From 45ae1bb1c012f5153381fa75c5b2a2a2b0ff0fd0 Mon Sep 17 00:00:00 2001 From: chan Date: Thu, 5 Mar 2026 17:50:34 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A6=B0=ED=8A=B8=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adminfront/src/components/auth/RoleGuard.tsx | 10 +- .../src/components/layout/AppLayout.tsx | 2 +- .../features/overview/GlobalOverviewPage.tsx | 40 +- .../tenants/routes/TenantListPage.tsx | 31 +- .../tenants/routes/TenantSchemaPage.tsx | 8 +- .../routes/TenantUserGroupsTab.tsx | 20 +- .../src/features/users/UserCreatePage.tsx | 11 +- .../src/features/users/UserDetailPage.tsx | 134 ++++-- .../src/features/users/UserListPage.tsx | 141 ++++--- .../components/UserBulkMoveGroupModal.tsx | 86 ++-- .../users/components/UserBulkUploadModal.tsx | 122 ++++-- .../src/features/users/utils/csvParser.ts | 13 +- adminfront/src/lib/adminApi.ts | 2 +- adminfront/src/lib/tenantTree.ts | 8 +- adminfront/tests/bulk_actions.spec.ts | 82 +++- adminfront/tests/users_bulk.spec.ts | 40 +- adminfront/tests/users_schema.spec.ts | 73 +++- .../middleware/audit_middleware_test.go | 4 +- locales/en.toml | 368 +++++++--------- locales/ko.toml | 335 +++++++-------- locales/template.toml | 394 ++++++++++-------- 21 files changed, 1114 insertions(+), 810 deletions(-) diff --git a/adminfront/src/components/auth/RoleGuard.tsx b/adminfront/src/components/auth/RoleGuard.tsx index 2e95d06e..6fd8e51c 100644 --- a/adminfront/src/components/auth/RoleGuard.tsx +++ b/adminfront/src/components/auth/RoleGuard.tsx @@ -1,5 +1,5 @@ -import * as React from "react"; import { useQuery } from "@tanstack/react-query"; +import type * as React from "react"; import { fetchMe } from "../../lib/adminApi"; interface RoleGuardProps { @@ -10,13 +10,17 @@ interface RoleGuardProps { /** * RoleGuard conditionally renders children based on the current user's role. - * + * * Usage: * * * */ -export function RoleGuard({ children, roles, fallback = null }: RoleGuardProps) { +export function RoleGuard({ + children, + roles, + fallback = null, +}: RoleGuardProps) { const { data: profile, isLoading } = useQuery({ queryKey: ["me"], queryFn: fetchMe, diff --git a/adminfront/src/components/layout/AppLayout.tsx b/adminfront/src/components/layout/AppLayout.tsx index d9b68d46..4fed1594 100644 --- a/adminfront/src/components/layout/AppLayout.tsx +++ b/adminfront/src/components/layout/AppLayout.tsx @@ -55,7 +55,7 @@ function AppLayout() { const manageableCount = profile?.manageableTenants?.length ?? 0; // Filter out restricted items for non-super admins - const filteredItems = items.filter(item => { + const filteredItems = items.filter((item) => { if (item.to === "/api-keys") return isSuperAdmin; return true; }); diff --git a/adminfront/src/features/overview/GlobalOverviewPage.tsx b/adminfront/src/features/overview/GlobalOverviewPage.tsx index 3e8220c2..46e01e29 100644 --- a/adminfront/src/features/overview/GlobalOverviewPage.tsx +++ b/adminfront/src/features/overview/GlobalOverviewPage.tsx @@ -7,6 +7,7 @@ import { Users, } from "lucide-react"; import { Link } from "react-router-dom"; +import { RoleGuard } from "../../components/auth/RoleGuard"; import { Badge } from "../../components/ui/badge"; import { Button } from "../../components/ui/button"; import { @@ -17,7 +18,6 @@ import { CardTitle, } from "../../components/ui/card"; import { t } from "../../lib/i18n"; -import { RoleGuard } from "../../components/auth/RoleGuard"; import PermissionChecker from "./components/PermissionChecker"; function GlobalOverviewPage() { @@ -54,7 +54,9 @@ function GlobalOverviewPage() { - {t("ui.admin.overview.summary.total_tenants", "Total Tenants")} + + {t("ui.admin.overview.summary.total_tenants", "Total Tenants")} +
@@ -62,13 +64,18 @@ function GlobalOverviewPage() {
-

- {t("msg.admin.overview.summary.total_tenants", "Tenant-aware core")} + {t( + "msg.admin.overview.summary.total_tenants", + "Tenant-aware core", + )}

- {t("ui.admin.overview.summary.oidc_clients", "OIDC Clients")} + + {t("ui.admin.overview.summary.oidc_clients", "OIDC Clients")} +
@@ -81,10 +88,15 @@ function GlobalOverviewPage() {
- + - {t("ui.admin.overview.summary.audit_events_24h", "Audit Events (24h)")} + + {t( + "ui.admin.overview.summary.audit_events_24h", + "Audit Events (24h)", + )} +
@@ -92,14 +104,19 @@ function GlobalOverviewPage() {
-

- {t("msg.admin.overview.summary.audit_events_24h", "ClickHouse stream")} + {t( + "msg.admin.overview.summary.audit_events_24h", + "ClickHouse stream", + )}

- + - {t("ui.admin.overview.summary.policy_gate", "Policy Gate")} + + {t("ui.admin.overview.summary.policy_gate", "Policy Gate")} +
@@ -107,7 +124,10 @@ function GlobalOverviewPage() {
Planned

- {t("msg.admin.overview.summary.policy_gate", "Keto + Admin checks")} + {t( + "msg.admin.overview.summary.policy_gate", + "Keto + Admin checks", + )}

diff --git a/adminfront/src/features/tenants/routes/TenantListPage.tsx b/adminfront/src/features/tenants/routes/TenantListPage.tsx index 44a1aa18..d1aa14e6 100644 --- a/adminfront/src/features/tenants/routes/TenantListPage.tsx +++ b/adminfront/src/features/tenants/routes/TenantListPage.tsx @@ -3,6 +3,7 @@ import type { AxiosError } from "axios"; import { CornerDownRight, Pencil, Plus, RefreshCw, Trash2 } from "lucide-react"; import * as React from "react"; import { Link, useNavigate } from "react-router-dom"; +import { RoleGuard } from "../../../components/auth/RoleGuard"; import { Badge } from "../../../components/ui/badge"; import { Button } from "../../../components/ui/button"; import { @@ -27,7 +28,6 @@ import { fetchTenants, } from "../../../lib/adminApi"; import { t } from "../../../lib/i18n"; -import { RoleGuard } from "../../../components/auth/RoleGuard"; function TenantListPage() { const navigate = useNavigate(); @@ -41,7 +41,10 @@ function TenantListPage() { if (profile?.role === "tenant_admin") { const manageableCount = profile.manageableTenants?.length ?? 0; // If only 1 in array, OR array is empty but we have a primary tenantId - if ((manageableCount === 1 || manageableCount === 0) && profile.tenantId) { + if ( + (manageableCount === 1 || manageableCount === 0) && + profile.tenantId + ) { navigate(`/tenants/${profile.tenantId}`, { replace: true }); } } @@ -50,7 +53,10 @@ function TenantListPage() { const query = useQuery({ queryKey: ["tenants", { limit: 1000, offset: 0 }], queryFn: () => fetchTenants(1000, 0), - enabled: profile?.role === "super_admin" || (profile?.role === "tenant_admin" && (profile.manageableTenants?.length ?? 0) > 1), + enabled: + profile?.role === "super_admin" || + (profile?.role === "tenant_admin" && + (profile.manageableTenants?.length ?? 0) > 1), }); const deleteMutation = useMutation({ @@ -60,17 +66,28 @@ function TenantListPage() { }, }); - if (profile && profile.role !== "super_admin" && profile.role !== "tenant_admin") { + if ( + profile && + profile.role !== "super_admin" && + profile.role !== "tenant_admin" + ) { return (
-

{t("msg.admin.common.forbidden", "접근 권한이 없습니다.")}

- +

+ {t("msg.admin.common.forbidden", "접근 권한이 없습니다.")} +

+
); } // While redirecting (only if exactly one manageable tenant) - if (profile?.role === "tenant_admin" && (profile.manageableTenants?.length ?? 0) <= 1) { + if ( + profile?.role === "tenant_admin" && + (profile.manageableTenants?.length ?? 0) <= 1 + ) { return null; } diff --git a/adminfront/src/features/tenants/routes/TenantSchemaPage.tsx b/adminfront/src/features/tenants/routes/TenantSchemaPage.tsx index bf4b2315..1c95d705 100644 --- a/adminfront/src/features/tenants/routes/TenantSchemaPage.tsx +++ b/adminfront/src/features/tenants/routes/TenantSchemaPage.tsx @@ -71,7 +71,8 @@ export function TenantSchemaPage() { : "text", required: Boolean(field?.required), adminOnly: Boolean(field?.adminOnly), - validation: typeof field?.validation === "string" ? field.validation : "", + validation: + typeof field?.validation === "string" ? field.validation : "", })), ); } @@ -170,7 +171,9 @@ export function TenantSchemaPage() { updateField(index, { key: e.target.value })} + onChange={(e) => + updateField(index, { key: e.target.value }) + } placeholder={t( "ui.admin.tenants.schema.field.key_placeholder", "예: employee_id", @@ -315,4 +318,3 @@ export function TenantSchemaPage() { ); } - diff --git a/adminfront/src/features/user-groups/routes/TenantUserGroupsTab.tsx b/adminfront/src/features/user-groups/routes/TenantUserGroupsTab.tsx index 048043ea..c56f8702 100644 --- a/adminfront/src/features/user-groups/routes/TenantUserGroupsTab.tsx +++ b/adminfront/src/features/user-groups/routes/TenantUserGroupsTab.tsx @@ -144,7 +144,7 @@ const MemberListDialog: React.FC<{ {node.name}{" "} {t("ui.admin.tenants.members.list_title", "구성원 관리")} - ({isDirectLoading ? "..." : directData?.total ?? 0}) + ({isDirectLoading ? "..." : (directData?.total ?? 0)}) @@ -167,7 +167,7 @@ const MemberListDialog: React.FC<{ className="rounded-none border-b-2 border-transparent data-[state=active]:border-primary data-[state=active]:bg-transparent px-0 py-2" > {t("ui.admin.tenants.members.direct", "소속 멤버")} ( - {isDirectLoading ? "..." : directData?.total ?? 0}) + {isDirectLoading ? "..." : (directData?.total ?? 0)}) setIsMemberListOpen(true)} - title={t("msg.admin.org.hover_member_info", "클릭하여 멤버 상세 조회")} + title={t( + "msg.admin.org.hover_member_info", + "클릭하여 멤버 상세 조회", + )} >
@@ -872,10 +875,7 @@ function TenantUserGroupsTab() { const tree = buildTenantFullTree(allTenants, tenantId); if (tree.currentBase) { // Merge backend-provided UserGroups into the tree as virtual children - tree.currentBase.children = [ - ...tree.currentBase.children, - ...groupNodes, - ]; + tree.currentBase.children = [...tree.currentBase.children, ...groupNodes]; } return tree; }, [allTenants, tenantId, groupNodes]); @@ -1092,9 +1092,9 @@ function TenantUserGroupsTab() { />
{treeSearchTerm && ( - + @@ -387,7 +425,10 @@ function UserListPage() { 0 && selectedUserIds.length === items.length} + checked={ + items.length > 0 && + selectedUserIds.length === items.length + } onChange={toggleSelectAll} /> @@ -407,13 +448,14 @@ function UserListPage() { )} {/* Dynamic Columns from Schema */} - {userSchema.map((field) => ( - visibleColumns[field.key] !== false && ( - - {field.label} - - ) - ))} + {userSchema.map( + (field) => + visibleColumns[field.key] !== false && ( + + {field.label} + + ), + )} {t("ui.admin.users.list.table.created", "CREATED")} @@ -444,9 +486,11 @@ function UserListPage() { )} {items.map((user) => ( - {/* Dynamic Metadata Cells */} - {userSchema.map((field) => ( - visibleColumns[field.key] !== false && ( - - {String(user.metadata?.[field.key] ?? "-")} - - ) - ))} + {userSchema.map( + (field) => + visibleColumns[field.key] !== false && ( + + {String(user.metadata?.[field.key] ?? "-")} + + ), + )} {new Date(user.createdAt).toLocaleDateString()} @@ -534,36 +579,38 @@ function UserListPage() { {selectedUserIds.length > 0 && (
- {t("ui.admin.users.bulk.selected_count", "{{count}}명 선택됨", { count: selectedUserIds.length })} + {t("ui.admin.users.bulk.selected_count", "{{count}}명 선택됨", { + count: selectedUserIds.length, + })}
- - - { query.refetch(); setSelectedUserIds([]); - }} + }} />
-
- - {t("ui.admin.users.bulk.move_title", "사용자 부서 이동")} + + {t("ui.admin.users.bulk.move_title", "사용자 부서 이동")} + - {t("msg.admin.users.bulk.move_description", "선택한 {{count}}명의 사용자를 이동할 테넌트와 부서를 선택하세요.", { count: userIds.length })} + {t( + "msg.admin.users.bulk.move_description", + "선택한 {{count}}명의 사용자를 이동할 테넌트와 부서를 선택하세요.", + { count: userIds.length }, + )}
- +
{selectedTenantSlug && (
- +
setSelectedGroupName("")} className={`flex w-full items-center gap-2 rounded-lg px-3 py-2 text-sm transition ${ - selectedGroupName === "" ? "bg-primary text-primary-foreground" : "hover:bg-muted" + selectedGroupName === "" + ? "bg-primary text-primary-foreground" + : "hover:bg-muted" }`} > {t("ui.admin.users.bulk.no_department", "(부서 없음)")} {isGroupsLoading ? ( -
+
+ +
) : ( filteredGroups.map((group) => ( - diff --git a/adminfront/src/features/users/components/UserBulkUploadModal.tsx b/adminfront/src/features/users/components/UserBulkUploadModal.tsx index 2fd38139..83c1c60f 100644 --- a/adminfront/src/features/users/components/UserBulkUploadModal.tsx +++ b/adminfront/src/features/users/components/UserBulkUploadModal.tsx @@ -1,5 +1,12 @@ import { useMutation } from "@tanstack/react-query"; -import { AlertCircle, CheckCircle2, Download, FileText, Loader2, Upload } from "lucide-react"; +import { + AlertCircle, + CheckCircle2, + Download, + FileText, + Loader2, + Upload, +} from "lucide-react"; import * as React from "react"; import { Button } from "../../../components/ui/button"; import { @@ -12,7 +19,11 @@ import { DialogTrigger, } from "../../../components/ui/dialog"; import { ScrollArea } from "../../../components/ui/scroll-area"; -import { bulkCreateUsers, type BulkUserItem, type BulkUserResult } from "../../../lib/adminApi"; +import { + type BulkUserItem, + type BulkUserResult, + bulkCreateUsers, +} from "../../../lib/adminApi"; import { t } from "../../../lib/i18n"; import { parseUserCSV } from "../utils/csvParser"; @@ -64,9 +75,15 @@ export function UserBulkUploadModal({ onSuccess }: UserBulkUploadModalProps) { const downloadTemplate = () => { const headers = "email,name,phone,role,companyCode,department,employee_id"; - const example = "user1@example.com,홍길동,010-1234-5678,user,tenant-slug,개발팀,EMP001"; - const blob = new Blob([`${headers} -${example}`], { type: "text/csv" }); + const example = + "user1@example.com,홍길동,010-1234-5678,user,tenant-slug,개발팀,EMP001"; + const blob = new Blob( + [ + `${headers} +${example}`, + ], + { type: "text/csv" }, + ); const url = URL.createObjectURL(blob); const a = document.createElement("a"); a.href = url; @@ -82,11 +99,17 @@ ${example}`], { type: "text/csv" }); if (fileInputRef.current) fileInputRef.current.value = ""; }; - const successCount = results?.filter(r => r.success).length ?? 0; + const successCount = results?.filter((r) => r.success).length ?? 0; const failCount = results ? results.length - successCount : 0; return ( - { setOpen(val); if (!val) reset(); }}> + { + setOpen(val); + if (!val) reset(); + }} + > @@ -115,8 +148,13 @@ ${example}`], { type: "text/csv" }); ref={fileInputRef} onChange={handleFileChange} /> -
@@ -125,7 +163,9 @@ ${example}`], { type: "text/csv" });
{file.name} - ({(file.size / 1024).toFixed(1)} KB) + + ({(file.size / 1024).toFixed(1)} KB) +
{parsing ? (
@@ -134,7 +174,11 @@ ${example}`], { type: "text/csv" });
) : (
- {t("msg.admin.users.bulk.parsed_count", "{{count}}명의 사용자가 감지되었습니다.", { count: previewData.length })} + {t( + "msg.admin.users.bulk.parsed_count", + "{{count}}명의 사용자가 감지되었습니다.", + { count: previewData.length }, + )}
)}
@@ -160,7 +204,10 @@ ${example}`], { type: "text/csv" }); ))} {previewData.length > 10 && ( - + ... and {previewData.length - 10} more users @@ -174,28 +221,49 @@ ${example}`], { type: "text/csv" });
-
{successCount}
-
{t("ui.common.success", "성공")}
+
+ {successCount} +
+
+ {t("ui.common.success", "성공")} +
-
{failCount}
-
{t("ui.common.fail", "실패")}
+
+ {failCount} +
+
+ {t("ui.common.fail", "실패")} +
{results.map((r, i) => ( -
+
{r.success ? ( - + ) : ( - + )}
{r.email}
- {!r.success &&
{r.message}
} + {!r.success && ( +
+ {r.message} +
+ )}
))} @@ -206,12 +274,14 @@ ${example}`], { type: "text/csv" }); {!results ? ( - ) : ( diff --git a/adminfront/src/features/users/utils/csvParser.ts b/adminfront/src/features/users/utils/csvParser.ts index ab63e435..015b2351 100644 --- a/adminfront/src/features/users/utils/csvParser.ts +++ b/adminfront/src/features/users/utils/csvParser.ts @@ -1,4 +1,4 @@ -import { type BulkUserItem } from "../../../lib/adminApi"; +import type { BulkUserItem } from "../../../lib/adminApi"; export function parseUserCSV(text: string): BulkUserItem[] { const lines = text.split(/\r?\n/); @@ -20,9 +20,14 @@ export function parseUserCSV(text: string): BulkUserItem[] { if (value === undefined || value === "") return; if ( - ["email", "name", "phone", "role", "companycode", "department"].includes( - header, - ) + [ + "email", + "name", + "phone", + "role", + "companycode", + "department", + ].includes(header) ) { const key = header === "companycode" ? "companyCode" : header; item[key] = value; diff --git a/adminfront/src/lib/adminApi.ts b/adminfront/src/lib/adminApi.ts index f63c5c3a..a390501c 100644 --- a/adminfront/src/lib/adminApi.ts +++ b/adminfront/src/lib/adminApi.ts @@ -450,7 +450,7 @@ export function exportUsersCSVUrl(search?: string, companyCode?: string) { const params = new URLSearchParams(); if (search) params.append("search", search); if (companyCode) params.append("companyCode", companyCode); - + // Get mock role from storage if exists for dev environment const mockRole = window.localStorage.getItem("X-Mock-Role"); if (mockRole) params.append("x-test-role", mockRole); diff --git a/adminfront/src/lib/tenantTree.ts b/adminfront/src/lib/tenantTree.ts index bafa9568..887e4b57 100644 --- a/adminfront/src/lib/tenantTree.ts +++ b/adminfront/src/lib/tenantTree.ts @@ -41,7 +41,9 @@ export function buildTenantFullTree( // Function to calculate recursive counts with cycle protection const calculateRecursive = (node: TenantNode): number => { if (visitedForCalc.has(node.id)) { - console.warn(`Circular dependency detected in tenant tree for ID: ${node.id}`); + console.warn( + `Circular dependency detected in tenant tree for ID: ${node.id}`, + ); return 0; // Prevent infinite loop } visitedForCalc.add(node.id); @@ -51,8 +53,8 @@ export function buildTenantFullTree( total += calculateRecursive(child); } node.recursiveMemberCount = total; - - // We don't remove from visitedForCalc here because a tree shouldn't have + + // We don't remove from visitedForCalc here because a tree shouldn't have // multiple paths to the same node anyway (it's a tree, not a graph). // If it were a DAG, we'd need different logic, but for a tree with parentIds, // a node should only be visited once. diff --git a/adminfront/tests/bulk_actions.spec.ts b/adminfront/tests/bulk_actions.spec.ts index 69168578..dc75258d 100644 --- a/adminfront/tests/bulk_actions.spec.ts +++ b/adminfront/tests/bulk_actions.spec.ts @@ -7,9 +7,14 @@ test.describe("Bulk Actions and Tree Search", () => { const authority = "http://localhost:5000/oidc"; const client_id = "adminfront"; const key = `oidc.user:${authority}:${client_id}`; - window.localStorage.setItem(key, JSON.stringify({ - access_token: "fake", profile: { sub: "admin", role: "super_admin" }, expires_at: 9999999999 - })); + window.localStorage.setItem( + key, + JSON.stringify({ + access_token: "fake", + profile: { sub: "admin", role: "super_admin" }, + expires_at: 9999999999, + }), + ); }); // Mock APIs @@ -18,34 +23,61 @@ test.describe("Bulk Actions and Tree Search", () => { }); await page.route("**/api/v1/admin/users?*", async (route) => { - await route.fulfill({ json: { - items: [ - { id: "u-1", name: "User One", email: "u1@test.com", status: "active", role: "user", createdAt: new Date().toISOString() }, - { id: "u-2", name: "User Two", email: "u2@test.com", status: "active", role: "user", createdAt: new Date().toISOString() }, - ], - total: 2 - }}); + await route.fulfill({ + json: { + items: [ + { + id: "u-1", + name: "User One", + email: "u1@test.com", + status: "active", + role: "user", + createdAt: new Date().toISOString(), + }, + { + id: "u-2", + name: "User Two", + email: "u2@test.com", + status: "active", + role: "user", + createdAt: new Date().toISOString(), + }, + ], + total: 2, + }, + }); }); await page.route("**/api/v1/admin/tenants/t-1", async (route) => { - await route.fulfill({ json: { id: "t-1", name: "Main Tenant", slug: "main" } }); + await route.fulfill({ + json: { id: "t-1", name: "Main Tenant", slug: "main" }, + }); }); - await page.route("**/api/v1/admin/tenants/t-1/organization", async (route) => { - await route.fulfill({ json: [ - { id: "g-1", name: "Engineering", slug: "eng", tenantId: "t-1" }, - { id: "g-2", name: "Sales", slug: "sales", tenantId: "t-1" }, - ]}); - }); + await page.route( + "**/api/v1/admin/tenants/t-1/organization", + async (route) => { + await route.fulfill({ + json: [ + { id: "g-1", name: "Engineering", slug: "eng", tenantId: "t-1" }, + { id: "g-2", name: "Sales", slug: "sales", tenantId: "t-1" }, + ], + }); + }, + ); }); - test("should show bulk action bar when users are selected", async ({ page }) => { + test("should show bulk action bar when users are selected", async ({ + page, + }) => { await page.goto("/users"); - + // Check individual row await page.locator('input[type="checkbox"]').nth(1).check(); await expect(page.getByText("1명 선택됨")).toBeVisible(); - await expect(page.getByRole("button", { name: /활성화|Active/i })).toBeVisible(); + await expect( + page.getByRole("button", { name: /활성화|Active/i }), + ).toBeVisible(); // Check select all await page.locator('input[type="checkbox"]').first().check(); @@ -56,15 +88,19 @@ test.describe("Bulk Actions and Tree Search", () => { await expect(page.getByText("명 선택됨")).not.toBeVisible(); }); - test("should filter and highlight nodes in organization tree", async ({ page }) => { + test("should filter and highlight nodes in organization tree", async ({ + page, + }) => { await page.goto("/tenants/t-1"); - await page.getByRole("link", { name: /하위 테넌트 관리|Sub-tenant/i }).click(); + await page + .getByRole("link", { name: /하위 테넌트 관리|Sub-tenant/i }) + .click(); const searchInput = page.getByPlaceholder(/조직도 내 검색|Search in tree/i); await expect(searchInput).toBeVisible(); await searchInput.fill("Eng"); - + // Check if Engineering row is highlighted const engRow = page.locator('tr:has-text("Engineering")'); await expect(engRow).toHaveClass(/bg-primary\/10/); diff --git a/adminfront/tests/users_bulk.spec.ts b/adminfront/tests/users_bulk.spec.ts index 3216c0de..4b7dda46 100644 --- a/adminfront/tests/users_bulk.spec.ts +++ b/adminfront/tests/users_bulk.spec.ts @@ -21,14 +21,22 @@ test.describe("Users Bulk Upload", () => { }); // Mock OIDC config - await page.route("**/oidc/.well-known/openid-configuration", async (route) => { - await route.fulfill({ json: { issuer: "http://localhost:5000/oidc" } }); - }); + await page.route( + "**/oidc/.well-known/openid-configuration", + async (route) => { + await route.fulfill({ json: { issuer: "http://localhost:5000/oidc" } }); + }, + ); // Mock user profile await page.route("**/api/v1/user/me", async (route) => { await route.fulfill({ - json: { id: "admin-user", name: "Admin User", email: "admin@example.com", role: "super_admin" }, + json: { + id: "admin-user", + name: "Admin User", + email: "admin@example.com", + role: "super_admin", + }, }); }); @@ -42,13 +50,19 @@ test.describe("Users Bulk Upload", () => { test("should open bulk upload modal and show preview", async ({ page }) => { await page.goto("/users"); - - const bulkBtn = page.getByRole("button", { name: /일괄 등록|Bulk Import/i }); + + const bulkBtn = page.getByRole("button", { + name: /일괄 등록|Bulk Import/i, + }); await expect(bulkBtn).toBeVisible(); await bulkBtn.click(); - await expect(page.getByText(/사용자 일괄 등록|User Bulk Upload/i)).toBeVisible(); - await expect(page.getByRole("button", { name: /템플릿 다운로드|Download Template/i })).toBeVisible(); + await expect( + page.getByText(/사용자 일괄 등록|User Bulk Upload/i), + ).toBeVisible(); + await expect( + page.getByRole("button", { name: /템플릿 다운로드|Download Template/i }), + ).toBeVisible(); }); test("should show success results after mock upload", async ({ page }) => { @@ -58,7 +72,11 @@ test.describe("Users Bulk Upload", () => { json: { results: [ { email: "success@test.com", success: true, userId: "u-1" }, - { email: "fail@test.com", success: false, message: "Invalid format" }, + { + email: "fail@test.com", + success: false, + message: "Invalid format", + }, ], }, }); @@ -69,7 +87,9 @@ test.describe("Users Bulk Upload", () => { // Directly set internal state for testing results view if file simulation is hard // But let's assume we want to see the "Start Upload" button disabled initially - const uploadBtn = page.getByRole("button", { name: /등록 시작|Start Upload/i }); + const uploadBtn = page.getByRole("button", { + name: /등록 시작|Start Upload/i, + }); await expect(uploadBtn).toBeDisabled(); }); }); diff --git a/adminfront/tests/users_schema.spec.ts b/adminfront/tests/users_schema.spec.ts index 13ed6c86..cd36aca6 100644 --- a/adminfront/tests/users_schema.spec.ts +++ b/adminfront/tests/users_schema.spec.ts @@ -10,19 +10,31 @@ test.describe("User Schema Dynamic Form", () => { const authData = { access_token: "fake-token", token_type: "Bearer", - profile: { sub: "admin-user", name: "Admin User", email: "admin@example.com" }, + profile: { + sub: "admin-user", + name: "Admin User", + email: "admin@example.com", + }, expires_at: Math.floor(Date.now() / 1000) + 3600, }; window.localStorage.setItem(key, JSON.stringify(authData)); }); - await page.route("**/oidc/.well-known/openid-configuration", async (route) => { - await route.fulfill({ json: { issuer: "http://localhost:5000/oidc" } }); - }); + await page.route( + "**/oidc/.well-known/openid-configuration", + async (route) => { + await route.fulfill({ json: { issuer: "http://localhost:5000/oidc" } }); + }, + ); await page.route("**/api/v1/user/me", async (route) => { await route.fulfill({ - json: { id: "admin-user", name: "Admin User", email: "admin@example.com", role: "super_admin" }, + json: { + id: "admin-user", + name: "Admin User", + email: "admin@example.com", + role: "super_admin", + }, }); }); @@ -34,11 +46,21 @@ test.describe("User Schema Dynamic Form", () => { slug: "test-tenant", config: { userSchema: [ - { key: "emp_id", label: "Employee ID", required: true, validation: "^E[0-9]{3}$" }, - { key: "salary", label: "Salary", adminOnly: true, type: "number" } - ] - } - } + { + key: "emp_id", + label: "Employee ID", + required: true, + validation: "^E[0-9]{3}$", + }, + { + key: "salary", + label: "Salary", + adminOnly: true, + type: "number", + }, + ], + }, + }, }); }); @@ -50,38 +72,51 @@ test.describe("User Schema Dynamic Form", () => { name: "John Doe", email: "john@test.com", companyCode: "test-tenant", - metadata: { emp_id: "E123", salary: 1000 } - } + metadata: { emp_id: "E123", salary: 1000 }, + }, }); }); await page.route("**/api/v1/admin/tenants**", async (route) => { if (route.request().method() === "GET") { - await route.fulfill({ json: { items: [{id: "t-1", slug: "test-tenant", name: "Test Tenant"}], total: 1 } }); + await route.fulfill({ + json: { + items: [{ id: "t-1", slug: "test-tenant", name: "Test Tenant" }], + total: 1, + }, + }); } }); }); - test("should render custom fields from schema in user detail", async ({ page }) => { + test("should render custom fields from schema in user detail", async ({ + page, + }) => { await page.goto("/users/u-1"); - await expect(page.getByText("테넌트 확장 정보 (Custom Fields)")).toBeVisible(); + await expect( + page.getByText("테넌트 확장 정보 (Custom Fields)"), + ).toBeVisible(); await expect(page.getByLabel("Employee ID")).toHaveValue("E123"); await expect(page.getByLabel("Salary")).toHaveValue("1000"); - + // Check for Admin Only badge await expect(page.getByText("Admin Only")).toBeVisible(); }); - test("should show regex validation error for custom field", async ({ page }) => { + test("should show regex validation error for custom field", async ({ + page, + }) => { await page.goto("/users/u-1"); const empIdInput = page.getByLabel("Employee ID"); await empIdInput.fill("invalid"); - + // Click somewhere to trigger blur/validation await page.getByLabel("이름").click(); - await expect(page.getByText("Employee ID 형식이 올바르지 않습니다.")).toBeVisible(); + await expect( + page.getByText("Employee ID 형식이 올바르지 않습니다."), + ).toBeVisible(); }); }); diff --git a/backend/internal/middleware/audit_middleware_test.go b/backend/internal/middleware/audit_middleware_test.go index 66a0f57e..9998429b 100644 --- a/backend/internal/middleware/audit_middleware_test.go +++ b/backend/internal/middleware/audit_middleware_test.go @@ -25,8 +25,8 @@ func (m *MockAuditRepository) Create(log *domain.AuditLog) error { return args.Error(0) } -func (m *MockAuditRepository) FindPage(ctx context.Context, limit int, cursor *domain.AuditCursor) ([]domain.AuditLog, error) { - args := m.Called(ctx, limit, cursor) +func (m *MockAuditRepository) FindPage(ctx context.Context, limit int, cursor *domain.AuditCursor, tenantID string) ([]domain.AuditLog, error) { + args := m.Called(ctx, limit, cursor, tenantID) return args.Get(0).([]domain.AuditLog), args.Error(1) } diff --git a/locales/en.toml b/locales/en.toml index 10930d16..0ef6eb11 100644 --- a/locales/en.toml +++ b/locales/en.toml @@ -73,6 +73,9 @@ scope_admin = "Scoped to /admin" session_ttl = "Session TTL: 15m admin" tenant_headers = "Tenant-aware headers" +[msg.admin.common] +forbidden = "You do not have permission to perform this action." + [msg.admin.api_keys] [msg.admin.api_keys.create] @@ -140,8 +143,8 @@ user_id = "User Id" assign_success = "Assign Success" description = "Description" empty = "Empty" -remove_confirm = "msg.admin.groups.roles.remove_confirm" -remove_success = "Remove Success" +remove_confirm = "Are you sure you want to revoke this role?" +remove_success = "Role revoked successfully." [msg.admin.header] subtitle = "Tenant isolation & least privilege by default" @@ -150,6 +153,12 @@ subtitle = "Tenant isolation & least privilege by default" idp_policy = "IDP Policy" scope = "Scope" +[msg.admin.org] +hover_member_info = "Hover to see member details." +import_description = "Upload a CSV file to bulk register the organization chart." +import_error = "An error occurred during organization chart import." +import_success = "Organization chart imported successfully." + [msg.admin.overview] description = "Description" idp_fallback = "Fallback: Descope" @@ -165,6 +174,12 @@ tenant_title = "Tenant isolation" [msg.admin.overview.quick_links] description = "Description" +[msg.admin.overview.summary] +audit_events_24h = "24h Audit Events" +oidc_clients = "OIDC Clients" +policy_gate = "Policy Gate Status" +total_tenants = "Total Tenants" + [msg.admin.tenants] approve_confirm = "Approve Confirm" approve_success = "Approve Success" @@ -173,6 +188,8 @@ delete_success = "Tenant deleted." empty = "Empty" fetch_error = "Fetch Error" missing_id = "No Tenant ID." +not_found = "Tenant not found." +remove_sub_confirm = 'Remove tenant "{{name}}" from sub-tenants?' subtitle = "Subtitle" [msg.admin.tenants.admins] @@ -203,8 +220,8 @@ subtitle = "Subtitle" subtitle = "Subtitle" [msg.admin.tenants.members] -empty = "No members found." desc = "View the list of users belonging to this organization." +empty = "No members found." limit_notice = "Showing members from the first 10 descendant organizations due to size limits." [msg.admin.tenants.registry] @@ -223,15 +240,28 @@ subtitle = "Subtitle" [msg.admin.users] +[msg.admin.users.bulk] +delete_confirm = "Are you sure you want to delete the selected {{count}} users?" +delete_success = "{{count}} users have been deleted." +description = "Bulk register or manage users via CSV file." +move_description = "Bulk move selected users to another tenant." +move_error = "Error moving users." +move_success = "{{count}} users moved successfully." +parsed_count = "Parsed {{count}} rows." +update_success = "User info updated successfully." + [msg.admin.users.create] error = "Failed to User Create." password_required = "Password Required" +success = "User created successfully." [msg.admin.users.create.account] subtitle = "Subtitle" [msg.admin.users.create.form] email_required = "Email Required" +field_invalid = "Invalid {{label}} format." +field_required = "{{label}} is required." name_required = "Name Required" password_auto_help = "Password Auto Help" password_manual_help = "Password Manual Help" @@ -248,6 +278,7 @@ update_error = "Failed to User Edit." update_success = "Update Success" [msg.admin.users.detail.form] +field_required = "Required." name_required = "Name Required" [msg.admin.users.detail.security] @@ -259,6 +290,10 @@ empty = "Empty" fetch_error = "Fetch Error" subtitle = "Subtitle" +[msg.admin.users.list.columns] +description = "Select columns to display in the table." +no_custom = "No custom fields defined for this tenant." + [msg.admin.users.list.registry] count = "Count" @@ -266,8 +301,9 @@ count = "Count" error = "Error" loading = "Loading..." no_description = "No Description." -saving = "Saving..." +parsing = "Parsing data..." requesting = "Requesting..." +saving = "Saving..." unknown_error = "unknown error" [msg.dev] @@ -282,12 +318,9 @@ loading = "Loading audit logs..." subtitle = "Shows DevFront activity history within current tenant/app scope." [msg.dev.clients] -copy_client_id = "Copy Client Id" load_error = "Error loading clients: {{error}}" loading = "Loading apps..." showing = "Showing {{shown}} of {{total}} apps" -status_update_error = "Failed to update client status" -status_updated = "The app has been {{status}}." deleted = "App deleted." delete_error = "Failed to delete: {{error}}" delete_confirm = "Are you sure you want to delete this app? This action cannot be undone." @@ -432,7 +465,7 @@ empty = "Empty" load_error = "Load Error" [msg.userfront.error] -detail_contact = "msg.userfront.error.detail_contact" +detail_contact = "Please contact administrator." detail_generic = "Detail Generic" detail_request = "Detail Request" id = "Id" @@ -441,6 +474,18 @@ title_generic = "Title Generic" title_with_code = "Title With Code" type = "Type" +[msg.userfront.error.whitelist] +"$normalizedCode" = "{{error}}" +settings_disabled = "Account settings are currently unavailable." +invalid_session = "Your session has expired. Please sign in again." +verification_required = "Additional verification is required. Please follow the instructions." +recovery_expired = "The recovery link has expired. Please request a new one." +recovery_invalid = "The recovery link is invalid." +rate_limited = "Too many requests. Please try again later." +not_found = "The requested page could not be found." +bad_request = "Please check your input." +password_or_email_mismatch = "Email or password does not match." + [msg.userfront.error.ory] "$normalizedCode" = "{{error}}" access_denied = "The user denied the consent request." @@ -457,18 +502,6 @@ temporarily_unavailable = "The authentication server is temporarily unavailable. unauthorized_client = "The client is not authorized for this request." unsupported_response_type = "The response type is not supported." -[msg.userfront.error.whitelist] -"$normalizedCode" = "{{error}}" -bad_request = "Please check your input." -invalid_session = "Your session has expired. Please sign in again." -not_found = "The requested page could not be found." -password_or_email_mismatch = "Email or password does not match." -rate_limited = "Too many requests. Please try again later." -recovery_expired = "The recovery link has expired. Please request a new one." -recovery_invalid = "The recovery link is invalid." -settings_disabled = "Account settings are currently unavailable." -verification_required = "Additional verification is required. Please follow the instructions." - [msg.userfront.forgot] description = "Description" dry_send = "Dry Send" @@ -493,7 +526,6 @@ token_missing = "Token Missing" verification_failed = "Verification Failed" [msg.userfront.login.link] -approved = "Approved" helper = "Sending you a login link" missing_login_id = "Missing Login Id" missing_phone = "Missing Phone" @@ -556,104 +588,15 @@ organization = "Organization" security = "Security" [msg.userfront.qr] -approve_error = "Approve Error" -approve_success = "Approve Success" -camera_error = "Camera Error" -permission_error = "Permission Error" -permission_required = "Permission Required" +rescan = "Rescan" +result_success = "Result Success" +title = "Scan QR Code" [msg.userfront.reset] -invalid_body = "Invalid Body" -invalid_link = "Invalid Link" -invalid_title = "Invalid Title" -policy_loading = "Policy Loading" -success = "Success" - -[msg.userfront.reset.error] -empty_password = "Please enter Password." -generic = "Generic" -lowercase = "Lowercase" -min_length = "Min Length" -min_types = "Min Types" -mismatch = "Mismatch" -number = "Number" -symbol = "Symbol" -uppercase = "Uppercase" - -[msg.userfront.reset.policy] -lowercase = "Lowercase" -min_length = "Min Length" -min_types = "Min Types" -number = "Number" -symbol = "Symbol" -uppercase = "Uppercase" - -[msg.userfront.sections] -apps_subtitle = "Apps Subtitle" -audit_subtitle = "Audit Subtitle" - -[msg.userfront.settings] -disabled = "Disabled" - -[msg.userfront.signup] -failed = "Failed" -privacy_full = "\n개인정보 수집 및 이용 동의\n\n바론서비스 개인정보처리방침\n\n제1조 (목적)\n바론컨설턴트(이하 \"회사\")는 바론서비스(이하 \"서비스\")를 이용하는 고객(이하 \"이용자\")의 개인정보를 보호하고, 「개인정보 보호법」에 따라 책임과 의무를 다하기 위해 본 개인정보처리방침을 마련했습니다. 본 방침은 이용자가 제공한 개인정보가 어떻게 수집, 이용, 보관, 보호되는지를 설명합니다.\n제2조 (개인정보의 처리목적)\n회사는 다음의 목적을 위해 개인정보를 처리합니다. 처리하고 있는 개인정보는 다음의 목적 이외의 용도로는 이용되지 않으며, 이용 목적이 변경되는 경우에는 「개인정보 보호법」 제18조에 따라 별도의 동의를 받는 등 필요한 조치를 이행할 예정입니다.\n- 본인확인: 회원가입 및 관리를 위한 본인 확인, 전화 또는 이메일을 통한 연락\n- 서비스 제공: 각종 통보 및 서비스 제공을 위한 업무 처리\n- 제품소개서 다운로드: 설명자료 전달\n- 상담 및 데모 신청: 상담 제공 및 데모 제공, 계약 처리자 정보 수집\n- 행사 참가 신청: 참석 안내 및 세미나/설명회/교육 제공\n- 보안가이드 제공: 안내자료 전달\n- 기술지원 문의: 서비스 사용 지원\n- 서비스 개선 의견 접수: 서비스 품질 개선\n- 마케팅 활동: 동의한 고객에 한해 뉴스레터 및 매거진 발송\n제3조 (개인정보의 처리 및 보유 기간)\n① 회사는 법령에 따른 개인정보 보유 및 이용기간 또는 정보주체로부터 개인정보를 수집 시 동의받은 개인정보 보유 및 이용기간 내에서 개인정보를 처리 및 보유합니다.\n② 각각의 개인정보 처리 및 보유 기간은 다음과 같습니다:\n- 회원정보: 회원가입일부터 회원탈퇴 후 1년까지\n- 홍보, 상담, 계약용 개인정보: 2년\n제4조 (개인정보의 제3자 제공)\n① 회사는 정보주체의 개인정보를 제2조에서 명시한 범위 내에서만 처리하며, 정보 주체의 동의, 법률의 특별한 규정 등 「개인정보 보호법」 제17조 및 제18조에 해당하는 경우에만 개인정보를 제3자에게 제공합니다.\n② 회사는 다음과 같이 개인정보를 제3자에게 제공하고 있습니다:\n- 제공받는 자: 수사기관 및 유관기관, 피신고업체\n- 이용 목적: 개인정보 침해 민원 처리\n- 제공하는 개인정보 항목: 성명, 연락처, 이메일\n- 보유 및 이용기간: 법령에서 정한 보존기간 및 제공목적 달성 시 파기\n제5조 (개인정보 처리 위탁)\n① 회사는 개인정보 처리업무를 외부 업체에 위탁하지 않으며, 자체적으로 처리하고 있습니다.\n② 회사가 특정 업무(예: 채용 업무)를 외부 업체에 위탁할 경우, 개인정보 처리방침 시행 전 회사 홈페이지에서 공지한 후 정보주체의 동의를 받은 후 위탁합니다.\n제6조 (정보주체의 권리·의무 및 행사 방법)\n① 정보주체는 회사에 대해 언제든지 개인정보 열람, 정정, 삭제, 처리정지 요구 등의 권리를 행사할 수 있습니다.\n② 권리 행사는 다음과 같은 방법으로 할 수 있습니다:\n- 서면: 회사 주소로 서면 제출\n- 전자우편: 회사 이메일로 요청\n- 모사전송(FAX): 회사 FAX로 요청\n③ 권리 행사는 정보주체의 법정대리인이나 위임을 받은 자를 통해 대리로도 가능합니다. 이 경우 “개인정보 처리 방법에 관한 고시” 별지 제11호 서식에 따른 위임장을 제출해야 합니다.\n④ 개인정보 열람 및 처리정지 요구는 「개인정보 보호법」 제35조 제4항, 제37조 제2항에 따라 제한될 수 있습니다.\n⑤ 개인정보의 정정 및 삭제 요구는 다른 법령에 따라 수집된 개인정보인 경우 제한될 수 있습니다.\n⑥ 회사는 권리 행사를 요청한 자가 본인 또는 정당한 대리인인지를 확인합니다.\n제7조 (처리하는 개인정보의 항목)\n회사는 다음의 개인정보 항목을 처리합니다:\n- 수집 항목:\n- 필수 항목: 성명, 휴대전화번호, 이메일\n- 선택 항목: 회사전화번호, 문의사항\n- 수집 방법:\n- 홈페이지, 전화, 이메일을 통해 수집\n제8조 (개인정보의 파기)\n① 회사는 개인정보 보유 기간의 경과, 처리 목적 달성 등 개인정보가 불필요하게 되었을 때 지체 없이 해당 개인정보를 파기합니다.\n② 정보주체로부터 동의받은 개인정보 보유 기간이 경과하거나 처리 목적이 달성된 경우에도 다른 법령에 따라 개인정보를 계속 보존해야 할 경우에는, 해당 개인정보를 별도의 데이터베이스(DB)로 옮기거나 보관 장소를 달리하여 보존합니다.\n③ 개인정보 파기의 절차 및 방법은 다음과 같습니다:\n- 파기 절차: 회사는 파기 사유가 발생한 개인정보를 선정하고, 개인정보 보호책임자의 승인을 받아 개인정보를 파기합니다.\n- 파기 방법: 전자적 파일 형태로 기록된 개인정보는 복구할 수 없도록 기술적 방법을 사용해 삭제하며, 종이 문서에 기록된 개인정보는 분쇄기로 분쇄하거나 소각하여 파기합니다.\n제9조 (개인정보의 안전성 확보 조치)\n회사는 개인정보의 안전성 확보를 위해 다음과 같은 조치를 취합니다:\n- 관리적 조치: 내부관리계획 수립·시행, 정기적 직원 교육\n- 기술적 조치: 개인정보처리시스템 접근 권한 관리, 접근통제시스템 설치, 고유식별정보 암호화, 보안 프로그램 설치\n- 물리적 조치: 전산실 및 자료보관실 접근 통제\n제10조 (개인정보 자동 수집 장치의 설치·운영 및 거부에 관한 사항)\n회사는 쿠키(Cookie)를 사용하지 않습니다. 쿠키는 이용자의 이용 정보를 저장하고 수시로 불러오는 작은 파일로, 바론서비스에서는 쿠키를 사용하지 않습니다.\n제11조 (개인정보 보호책임자)\n회사는 개인정보 처리에 관한 업무를 총괄하여 책임지고, 개인정보 처리와 관련된 정보주체의 불만처리 및 피해구제를 위해 개인정보 보호책임자를 지정하고 있습니다.\n개인정보 보호책임자:\n- 성명: 염승호\n- 직책: 수석연구원\n- 연락처: 02-2141-7448\n- 팩스번호: 02-2141-7599\n- 이메일: b23008@baroncs.co.kr\n제12조 (개인정보 열람청구)\n정보주체는 「개인정보 보호법」 제35조에 따른 개인정보 열람 청구를 아래 부서에 할 수 있습니다. 회사는 정보주체의 개인정보 열람청구가 신속하게 처리되도록 노력하겠습니다.\n개인정보 열람청구 접수·처리 부서:\n- 부서명: 총괄기획실\n- 담당자: 권혁진\n- 연락처: 02-2141-7465\n- 팩스번호: 02-2141-7599\n- 이메일: baroncs@baroncs.co.kr\n제13조 (권익침해 구제방법)\n정보주체는 개인정보 침해로 인한 구제를 위해 개인정보분쟁조정위원회, 한국인터넷진흥원 개인정보해신고센터 등에 분쟁 해결이나 상담을 신청할 수 있습니다.\n- 개인정보분쟁조정위원회: (국번없이) 1833-6972 (www.kopico.go.kr)\n- 개인정보침해신고센터: (국번없이) 118 (privacy.kisa.or.kr)\n- 대검찰청: (국번없이) 1301 (www.spo.go.kr)\n- 경찰청: (국번없이) 182 (www.police.go.kr)\n제14조 (개인정보 처리방침의 변경)\n본 개인정보처리방침은 법령, 정책 또는 보안 기술의 변경에 따라 내용의 추가, 삭제 및 수정이 있을 시, 개정 최소 7일 전에 홈페이지를 통해 사전 공지합니다.\n\n부칙\n제1조 (시행일자)\n이 개인정보처리방침은 2024년 10월 1일부터 시행됩니다.\n제2조 (개정 및 고지의 의무)\n회사는 개인정보처리방침을 변경하는 경우, 변경사항을 시행일자 7일 전부터 서비스 내 공지사항 페이지를 통해 고지할 것입니다. 다만, 이용자의 권리나 의무에 중대한 변경이 발생하는 경우에는 시행일자 30일 전부터 고지합니다.\n제3조 (유효성)\n본 개인정보처리방침의 일부 조항이 법적 또는 기타 사유로 인해 무효화되거나 시행할 수 없는 경우, 나머지 조항들은 계속해서 유효합니다. 무효화된 조항은 관련 법령에 부합하는 방식으로 수정되어 효력을 지속합니다.\n제4조 (변경 통지의 방법)\n회사는 개인정보처리방침의 변경 시, 다음의 방법으로 이용자에게 고지합니다:\n- 서비스 초기화면 또는 팝업 공지\n- 이메일 발송\n- 회사 홈페이지 공지사항\n제5조 (비회원의 개인정보 보호)\n회사는 비회원의 개인정보도 회원과 동일한 수준으로 보호합니다. 비회원이 개인정보 제공을 거부할 경우 일부 서비스 이용에 제한이 있을 수 있습니다.\n제6조 (14세 미만 아동의 개인정보 보호)\n회사는 14세 미만 아동의 개인정보를 수집하지 않습니다. 만일 14세 미만 아동의 개인정보가 수집된 경우, 법정 대리인의 동의를 받아야 하며, 법정 대리인의 동의 없이 수집된 경우 이를 지체 없이 파기합니다.\n제7조 (개인정보의 국외 이전)\n회사는 이용자의 개인정보를 국외로 이전하지 않으며, 향후 필요한 경우, 사전에 이용자의 동의를 받습니다.\n제8조 (기타)\n본 방침에 명시되지 않은 사항은 회사의 내부 방침과 관련 법령에 따릅니다.\n" -tos_full = "\n바론 소프트웨어 이용약관\n\n제1장 총칙\n제1조 (목적)\n이 약관은 바론컨설턴트(이하 \"회사\"라 합니다)가 제공하는 바론소프트웨어(이하 \"서비스\"라 합니다)를 이용함에 있어 회사와 이용자 간의 권리, 의무 및 책임사항과 기타 필요한 사항을 정하는 것을 목적으로 합니다.\n제2조 (용어의 정의)\n① 본 약관에서 사용하는 용어의 정의는 다음과 같습니다:\n- “서비스”란 회사가 제공하는 소프트웨어 및 관련 제반 서비스를 의미합니다.\n- “이용자”란 회사의 서비스에 접속하여 본 약관에 따라 회사가 제공하는 서비스를 이용하는 회원 및 비회원을 말합니다.\n- “회원”이란 본 약관에 동의하고 회사와 이용계약을 체결한 자를 의미합니다.\n- “비회원”이란 회원가입을 하지 않고 회사가 제공하는 일부 서비스를 이용하는 자를 말합니다.\n제3조 (약관의 효력 및 변경)\n① 본 약관은 이용자가 본 약관에 동의하고, 회사가 이에 대한 승낙을 완료함으로써 효력이 발생합니다. ② 회사는 필요한 경우 본 약관을 변경할 수 있으며, 변경된 약관은 서비스 화면에 공지된 후 효력이 발생합니다.\n제4조 (약관 외 준칙)\n본 약관에 명시되지 않은 사항에 대해서는 대한민국의 관련 법령과 상관습에 따릅니다.\n제2장 서비스 이용계약\n제5조 (이용계약의 성립)\n이용계약은 이용자가 약관의 내용에 동의하고, 회사가 제공하는 소정의 회원가입 신청서를 작성하여 가입을 완료한 후, 회사가 이를 승인함으로써 성립합니다.\n제6조 (이용계약의 유보와 거절)\n① 회사는 다음 각 호에 해당하는 경우 이용계약의 성립을 유보하거나 거절할 수 있습니다: - 신청서의 내용이 허위로 판명된 경우 - 서비스 제공이 기술적으로 어려운 경우\n제7조 (계약사항의 변경)\n회원은 개인정보 관리 메뉴를 통해 언제든지 자신의 정보를 열람하고 수정할 수 있습니다. 회원의 정보가 변경된 경우 즉시 수정해야 하며, 수정하지 않아 발생하는 문제의 책임은 회원에게 있습니다.\n제3장 개인정보 보호\n제8조 (개인정보 보호의 원칙)\n① 회원의 개인정보는 관련 법령에 따라 보호됩니다. ② 회사는 개인정보 보호와 관련된 세부 사항을 별도로 마련한 개인정보처리방침에 따라 관리하며, 이용자는 언제든지 해당 방침을 통해 개인정보 관리에 대한 자세한 내용을 확인할 수 있습니다.\n제9조 (개인정보처리방침 준수)\n① 회사는 개인정보 보호와 관련된 구체적인 사항을 개인정보처리방침에 따라 관리합니다. ② 개인정보의 수집, 이용, 제공, 보관, 보호 등에 관한 사항은 회사의 개인정보처리방침을 따르며, 이용자는 회사 웹사이트에서 이를 확인할 수 있습니다. ③ 회사는 개인정보 보호를 위해 최선을 다하며, 관련 법령에 따라 이용자의 개인정보를 안전하게 관리합니다.\n제10조 (14세 미만 아동의 개인정보 보호)\n① 회사는 14세 미만 아동의 개인정보를 수집할 경우, 반드시 법정대리인의 동의를 받아야 합니다. ② 법정대리인은 아동의 개인정보 열람, 수정, 삭제를 요청할 수 있으며, 회사는 이를 신속하게 처리합니다. ③ 14세 미만 아동의 개인정보 보호와 관련된 구체적인 사항은 개인정보처리방침에 명시되어 있습니다.\n제4장 서비스 제공 및 이용\n제11조 (서비스 제공)\n회사는 회원의 이용 신청을 승인한 때부터 서비스를 개시합니다. 서비스 이용은 연중무휴 24시간을 원칙으로 합니다.\n제12조 (서비스의 변경 및 중단)\n회사는 서비스 제공이 어려운 경우 사전 고지 후 서비스를 변경하거나 중단할 수 있습니다.\n제5장 정보 제공 및 광고\n제13조 (정보 제공 및 광고)\n① 회사는 서비스 이용 중 필요하다고 인정되는 정보 및 광고를 제공할 수 있습니다. ② 회원은 원치 않는 정보를 수신 거부할 수 있습니다.\n제6장 게시물 관리\n제14조 (게시물의 관리)\n회사는 회원이 게시한 내용이 불법적이거나 약관에 위배될 경우 이를 삭제할 수 있습니다.\n제15조 (게시물의 저작권)\n게시물의 저작권은 회원에게 있으며, 회사는 이를 서비스 홍보 및 개선 목적으로 사용할 수 있습니다.\n제7장 계약 해지 및 이용 제한\n제16조 (계약 해지)\n회원은 언제든지 계약 해지를 요청할 수 있으며, 회사는 신속하게 처리합니다.\n제17조 (이용 제한)\n회사는 회원이 약관을 위반할 경우 서비스 이용을 제한할 수 있습니다.\n제8장 손해 배상 및 면책 조항\n제18조 (손해 배상)\n회사는 무료로 제공되는 서비스와 관련하여 회원에게 발생한 손해에 대해 책임을 지지 않습니다.\n제19조 (면책 조항)\n회사는 천재지변 등 불가항력적인 사유로 인해 서비스를 제공하지 못하는 경우 책임을 지지 않습니다.\n제9장 유료 서비스\n20조 (유료 서비스의 이용)\n① 회사는 회원에게 특정 서비스에 대해 유료로 제공할 수 있습니다. ② 유료 서비스의 이용 요금, 결제 방식, 환불 절차 등에 대한 상세 내용은 서비스 안내 페이지와 결제 화면에 명시합니다. ③ 유료 서비스 이용 요금은 회사가 정한 결제 방식에 따라 결제됩니다. 회원은 신용카드, 계좌이체, 휴대전화 결제 등 회사가 제공하는 다양한 결제 방식을 통해 요금을 납부할 수 있습니다. ④ 유료 서비스의 이용 요금은 선불 결제를 원칙으로 하며, 이용 기간 중 서비스 중지 및 해지 시 남은 이용 기간에 대한 환불은 회사의 환불 정책에 따라 처리됩니다. ⑤ 회사는 회원의 유료 서비스 이용과 관련하여 발생한 문제에 대해 최선을 다해 해결하도록 노력합니다. 다만, 회사의 고의 또는 중대한 과실이 없는 한 회원이 유료 서비스 이용 중 입은 손해에 대해서는 책임을 지지 않습니다.\n제21조(환불 정책)\n① 회원은 결제 후 7일 이내에 서비스 이용을 시작하지 않은 경우, 요금 전액을 환불받을 수 있습니다. ② 유료 서비스 이용 중 부득이한 사유로 서비스가 중지된 경우, 회사는 이용하지 않은 부분에 대해 환불 절차를 밟습니다. ③ 회원의 귀책사유로 인해 서비스 이용이 중지된 경우, 환불이 불가능합니다. ④ 환불은 회원이 지정한 계좌로 환불 절차를 거치며, 환불 요청 후 7일 이내에 처리됩니다.\n제22조 (유료 서비스의 중지 및 해지)\n① 회원이 유료 서비스를 해지하고자 하는 경우, 회사의 고객 지원 센터에 해지 신청을 해야 합니다. ② 회사는 회원이 약관을 위반하거나 부정한 방법으로 유료 서비스를 이용한 경우, 유료 서비스 이용을 즉시 중지하고 계약을 해지할 수 있습니다.\n제10장 양도 금지\n제23조 (양도 금지)\n회원은 서비스 이용권한, 기타 이용계약상의 지위를 제3자에게 양도, 증여할 수 없으며, 이를 담보로 제공할 수 없습니다.\n제11장 관할 법원\n제24조 (분쟁 해결)\n서비스 이용과 관련하여 분쟁이 발생한 경우, 회사와 회원은 성실히 협의하여 해결합니다.\n제25조 (관할 법원)\n본 약관에 따른 분쟁은 서울중앙지방법원을 관할 법원으로 합니다.\n부칙\n본 약관은 2024년 10월 1일부터 시행됩니다.\n" - -[msg.userfront.signup.agreement] -title = "Title" - -[msg.userfront.signup.auth] -affiliate_notice = "Affiliate Notice" -title = "Title" - -[msg.userfront.signup.email] -code_mismatch = "Code Mismatch" -duplicate = "Duplicate" -invalid = "Invalid" -send_failed = "Send Failed" -verified = "Verified" -verify_failed = "Verify Failed" - -[msg.userfront.signup.password] -length_required = "Length Required" -lowercase_required = "Lowercase Required" -mismatch = "Mismatch" -number_required = "Number Required" -symbol_required = "Symbol Required" -title = "Title" -uppercase_required = "Uppercase Required" - -[msg.userfront.signup.password.rule] -lowercase = "Lowercase" -min_length = "Min Length" -min_types = "Min Types" -number = "Number" -symbol = "Symbol" -uppercase = "Uppercase" - -[msg.userfront.signup.phone] -code_mismatch = "Code Mismatch" -send_failed = "Send Failed" -verified = "Verified" -verify_failed = "Verify Failed" - -[msg.userfront.signup.policy] -loading = "Loading" -lowercase = "Lowercase" -min_length = "Min Length" -min_types = "Min Types" -number = "Number" -summary = "Summary" -symbol = "Symbol" -uppercase = "Uppercase" - -[msg.userfront.signup.profile] -affiliate_hint = "Affiliate Hint" -title = "Title" - -[msg.userfront.signup.success] -body = "Body" +confirm_password = "Confirm Password" +new_password = "New Password" +submit = "Submit" +subtitle = "Subtitle" title = "Title" [ui] @@ -742,11 +685,9 @@ status = "STATUS" time = "TIME" [ui.admin.groups] -add_unit = "Organization Add" import_csv = "Import Csv" [ui.admin.groups.create] -description = "Description" title = "Title" [ui.admin.groups.detail] @@ -763,8 +704,6 @@ desc_label = "Description" desc_placeholder = "Desc Placeholder" name_label = "Group Name" name_placeholder = "Name Placeholder" -parent_label = "Parent Label" -parent_none = "Parent None" submit = "Submit" unit_level_label = "Unit Level Label" unit_level_placeholder = "Unit Level Placeholder" @@ -781,8 +720,6 @@ remove = "Remove" [ui.admin.groups.table] actions = "ACTIONS" -created_at = "Created At" -level = "Level" members = "MEMBERS" name = "NAME" @@ -797,10 +734,16 @@ logout = "Logout" overview = "Overview" relying_parties = "Apps (RP)" tenant_dashboard = "Tenant Dashboard" -tenants = "Tenants" user_groups = "User Groups" +tenants = "Tenants" users = "Users" +[ui.admin.org] +download_template = "Download Template" +import_btn = "Import" +import_title = "Bulk Organization Import" +start_import = "Start Import" + [ui.admin.overview] kicker = "Global Overview" title = "Tenant-independent control plane" @@ -810,10 +753,17 @@ title = "Admin playbook" [ui.admin.overview.quick_links] add_tenant = "Tenant Add" -tenant_dashboard = "Tenant Dashboard" +api_key_management = "API Key Management" +user_management = "User Management" title = "Title" view_audit_logs = "View Audit Logs" +[ui.admin.overview.summary] +audit_events_24h = "24h Events" +oidc_clients = "OIDC Clients" +policy_gate = "Policy Gate" +total_tenants = "Total Tenants" + [ui.admin.profile] manageable_tenants = "Manageable Tenants" @@ -895,12 +845,13 @@ title = "Details" select_placeholder = "Select Placeholder" [ui.admin.tenants.members] -title = "Tenant Members ({{count}})" -direct_label = "Direct" -total_label = "Total" -list_title = "Member Management" -direct = "Direct Members" descendants = "Descendant Members" +direct = "Direct Members" +direct_label = "Direct" +list_title = "Member Management" +title = "Tenant Members ({{count}})" +total = "Total" +total_label = "Total" [ui.admin.tenants.members.table] email = "EMAIL" @@ -908,40 +859,38 @@ name = "NAME" role = "ROLE" status = "STATUS" -[ui.admin.tenants.profile] -allowed_domains = "Allowed Domains" -allowed_domains_help = "Allowed Domains Help" -approve_button = "Tenant Approve" -description = "Description" -name = "Tenant Name" -slug = "Slug" -status = "Status" -subtitle = "Subtitle" -title = "Tenant Profile" -type = "Type" - [ui.admin.tenants.registry] title = "Tenant registry" [ui.admin.tenants.schema] add_field = "Add Field" -save = "Save Schema Changes" +save = "Save Schema" title = "User Schema Extension" [ui.admin.tenants.schema.field] +admin_only = "Admin Only" key = "Field Key (ID)" key_placeholder = "e.g. employee_id" label = "Display Label" label_placeholder = "Label Placeholder" +required = "Required" type = "Type" type_boolean = "Boolean" +type_date = "Date" type_number = "Number" type_text = "Text" +validation_placeholder = "Regex Pattern (Optional)" [ui.admin.tenants.sub] add = "Add" +add_dialog_desc = "Select a tenant to add as a sub-tenant." +add_dialog_title = "Add Sub-tenant" +add_existing = "Add Existing Tenant" manage = "Manage" +no_candidates = "No available tenants to add." +search_placeholder = "Search..." title = "Sub-tenants ({{count}})" +tree_search_placeholder = "Search in tree..." [ui.admin.tenants.sub.table] action = "ACTION" @@ -951,6 +900,7 @@ status = "STATUS" [ui.admin.tenants.table] actions = "ACTIONS" +members = "Members" name = "NAME" slug = "SLUG" status = "STATUS" @@ -959,6 +909,17 @@ updated = "UPDATED" [ui.admin.users] +[ui.admin.users.bulk] +do_move = "Execute Move" +download_template = "Download Template" +move_group = "Bulk Tenant Move" +move_title = "Bulk User Move" +no_department = "No Department" +select_group = "Select Target Tenant" +selected_count = "{{count}} users selected" +start_upload = "Start Upload" +title = "Bulk Actions" + [ui.admin.users.create] back = "Back" go_list = "Go List" @@ -981,18 +942,14 @@ department = "Department" department_placeholder = "Department Placeholder" email = "Email" email_placeholder = "user@example.com" -job_title = "Job Title" -job_title_placeholder = "Job Title Placeholder" name = "Name" name_placeholder = "Name Placeholder" password = "Password" password_placeholder = "********" phone = "Phone number" phone_placeholder = "010-1234-5678" -position = "Position" -position_placeholder = "Position Placeholder" role = "Role" -tenant = "Tenant (Tenant)" +tenant = "Tenant" tenant_global = "Tenant Global" [ui.admin.users.create.password_generated] @@ -1007,22 +964,15 @@ title = "User Details" section = "Users" [ui.admin.users.detail.custom_fields] -title = "Title" +multi_title = "Per-tenant Profile Management" [ui.admin.users.detail.form] -department = "Department" -department_placeholder = "Department Placeholder" -job_title = "Job Title" -job_title_placeholder = "Job Title Placeholder" -name = "Name" -name_placeholder = "Name Placeholder" +name_required = "Name is required." phone = "Phone number" phone_placeholder = "010-1234-5678" -position = "Position" -position_placeholder = "Position Placeholder" role = "Role" status = "Status" -tenant = "Tenant (Tenant)" +tenant = "Representative Affiliated Tenant" tenant_global = "Tenant Global" [ui.admin.users.detail.security] @@ -1037,34 +987,48 @@ title = "Affiliation & Organization Info" [ui.admin.users.list] add = "User Add" -delete_aria = "User Delete: {{name}}" -edit_aria = "User Edit: {{name}}" +bulk_import = "Bulk Import" +empty = "Empty" +fetch_error = "Fetch Error" search_placeholder = "Search Placeholder" -tenant_slug = "Slug: {{slug}}" -title = "User Manage" +subtitle = "Subtitle" [ui.admin.users.list.breadcrumb] list = "List" section = "Users" +[ui.admin.users.list.columns] +title = "Column Settings" + +[ui.admin.users.list.filter] +tenant = "Tenant Filter" + [ui.admin.users.list.registry] -title = "User Registry" +count = "Count" [ui.admin.users.list.table] actions = "ACTIONS" created = "CREATED" name_email = "NAME / EMAIL" -position_job = "POSITION / JOB" role = "ROLE" status = "STATUS" tenant_dept = "TENANT / DEPT" +[ui.admin.users.table] +email = "Email" +name = "Name" +role = "Role" + + [ui.common] add = "Add" +all = "All" admin_only = "Admin Only" assign = "Assign" back = "Back" cancel = "Cancel" +change_file = "Change File" +clear_search = "Clear Search" close = "Close" collapse = "Collapse" confirm = "Confirm" @@ -1073,10 +1037,12 @@ create = "Create" delete = "Delete" details = "Details" edit = "Edit" +export = "Export" +fail = "Fail" +go_home = "Go Home" +view = "View" hyphen = "-" -language = "Language" -language_en = "English" -language_ko = "Language Ko" +manage = "Manage" na = "N/A" never = "Never" next = "Next" @@ -1085,34 +1051,32 @@ page_of = "Page {{page}} of {{total}}" prev = "Prev" previous = "Previous" qr = "QR" +reset = "Reset" read_only = "Read Only" refresh = "Refresh" -reset = "Reset" -requesting = "Requesting" +remove = "Remove" resend = "Resend" retry = "Retry" save = "Save" search = "Search" -select = "User Optional" +select = "Select" +select_file = "Select File" select_placeholder = "Select Placeholder" show_more = "Show More" +language = "Language" +language_ko = "Korean" +language_en = "English" +success = "Success" theme_dark = "Dark" theme_light = "Light" theme_toggle = "Theme Toggle" unknown = "Unknown" -view = "View" -manage = "Manage" -remove = "Remove" [ui.common.badge] admin_only = "Admin only" command_only = "Command only" system = "System" -[ui.common.role] -admin = "Admin" -user = "User" - [ui.common.status] active = "Active" blocked = "Blocked" @@ -1135,7 +1099,6 @@ env_badge = "Env: dev" scope_badge = "Scoped to /dev" [ui.dev.nav] -audit_logs = "Audit Logs" clients = "Connected Application" logout = "Logout" @@ -1165,7 +1128,6 @@ unknown_email = "unknown@example.com" unknown_name = "Unknown User" [ui.dev.clients] -copy_client_id = "Copy client id" new = "Add Connected Application" search_placeholder = "Search by app name or ID..." tenant_scoped = "Tenant-scoped" @@ -1184,10 +1146,8 @@ type_label = "Type:" export_csv = "Export CSV" revoke = "Revoke" revoked_at = "Revoked: " -scope_all = "All Scopes" scope_label = "Scope:" search_placeholder = "Search Placeholder" -status_all = "All Statuses" status_label = "Status:" status_revoked = "Revoked" subject = "Subject" @@ -1195,7 +1155,6 @@ title = "User Consent Grants" [ui.dev.clients.consents.breadcrumb] clients = "Clients" -current = "User Consent Grants" home = "Home" [ui.dev.clients.consents.filters] @@ -1206,13 +1165,6 @@ active_grants = "Active Grants" avg_scopes = "Avg. Scopes per User" total_scopes = "Total Scopes Issued" -[ui.dev.clients.stats] -total = "Total Applications" -active_sessions = "Active Sessions" -auth_failures = "Auth Failures (24h)" -realtime = "Realtime" -stable = "Stable" - [ui.dev.clients.consents.table] action = "Action" first_granted = "First Granted" @@ -1224,10 +1176,6 @@ user = "User" [ui.dev.clients.details] -[ui.dev.clients.details.breadcrumb] -current = "App Details" -section = "Connected Applications" - [ui.dev.clients.details.credentials] client_id = "Client ID" client_secret = "Client Secret" @@ -1268,13 +1216,6 @@ title = "Identity Federation" add_title = "Add Identity Provider" add_btn = "Add Provider" -[ui.dev.clients.general.breadcrumb] -section = "Applications" - -[ui.dev.clients.general.footer] -client_id = "Client ID" -created_on = "Created On" - [ui.dev.clients.general.identity] description = "Description" description_placeholder = "Description Placeholder" @@ -1457,12 +1398,9 @@ login_id = "Emain or Phone Number" password = "Password" [ui.userfront.login.link] -action_label = "Action Label" code_only = "Code Only" -page_title = "Page Title" resend_with_time = "Resend With Time" send = "Send" -title = "Title" [ui.userfront.login.qr] expired = "Expired" @@ -1532,9 +1470,7 @@ organization = "Organization" security = "Security" [ui.userfront.qr] -request_permission = "Request Permission" rescan = "Rescan" -result_failure = "Result Failure" result_success = "Result Success" title = "Scan QR Code" @@ -1594,25 +1530,3 @@ verify = "Verify" [ui.userfront.signup.success] action = "Action" - -[msg.admin.tenants] -not_found = "Tenant not found." -remove_sub_confirm = 'Remove tenant "{{name}}" from sub-tenants?' - -[msg.admin.users.create] -success = "User created successfully." - -[ui.admin.tenants.sub] -add_dialog_desc = "Select a tenant to add as a sub-tenant." -add_dialog_title = "Add Sub-tenant" -add_existing = "Add Existing Tenant" -no_candidates = "No available tenants to add." -search_placeholder = "Search by name or slug..." - -[ui.admin.tenants.table] -members = "Members" - -[ui.admin.users.table] -email = "Email" -name = "Name" -role = "Role" diff --git a/locales/ko.toml b/locales/ko.toml index d4074331..a6b05cc7 100644 --- a/locales/ko.toml +++ b/locales/ko.toml @@ -73,6 +73,9 @@ scope_admin = "Scoped to /admin" session_ttl = "Session TTL: 15m admin" tenant_headers = "Tenant-aware headers" +[msg.admin.common] +forbidden = "이 작업을 수행할 권한이 없습니다." + [msg.admin.api_keys] [msg.admin.api_keys.create] @@ -140,7 +143,7 @@ user_id = "추가할 사용자의 UUID를 입력하세요:" assign_success = "역할이 할당되었습니다." description = "이 조직의 구성원들이 대상 테넌트에서 상속받을 역할을 선택하세요." empty = "할당된 역할이 없습니다." -remove_confirm = "msg.admin.groups.roles.remove_confirm" +remove_confirm = "역할을 회수하시겠습니까?" remove_success = "역할이 회수되었습니다." [msg.admin.header] @@ -150,6 +153,12 @@ subtitle = "Tenant isolation & least privilege by default" idp_policy = "IDP 관리 키는 서버 내부 래핑 API로만 사용하며, 감사·레이트리밋을 기본 적용합니다." scope = "관리 기능은 /admin 네임스페이스에서만 노출합니다." +[msg.admin.org] +hover_member_info = "마우스를 올리면 상세 정보를 확인할 수 있습니다." +import_description = "CSV 파일을 업로드하여 조직도를 일괄 등록합니다." +import_error = "조직도 임포트 중 오류가 발생했습니다." +import_success = "조직도가 성공적으로 임포트되었습니다." + [msg.admin.overview] description = "모든 테넌트 공통 지표와 정책 상태를 한 곳에서 확인합니다." idp_fallback = "Fallback: Descope" @@ -165,6 +174,12 @@ tenant_title = "Tenant isolation" [msg.admin.overview.quick_links] description = "주요 운영 화면으로 바로 이동합니다." +[msg.admin.overview.summary] +audit_events_24h = "최근 24시간 감사 로그" +oidc_clients = "등록된 OIDC 클라이언트" +policy_gate = "정책 가이트 상태" +total_tenants = "전체 테넌트 수" + [msg.admin.tenants] approve_confirm = "이 테넌트를 승인하시겠습니까?" approve_success = "테넌트가 승인되었습니다." @@ -173,6 +188,8 @@ delete_success = "테넌트가 삭제되었습니다." empty = "아직 등록된 테넌트가 없습니다." fetch_error = "테넌트 목록 조회에 실패했습니다." missing_id = "테넌트 ID가 없습니다." +not_found = "테넌트를 찾을 수 없습니다." +remove_sub_confirm = "테넌트 \"{{name}}\"을(를) 하위 조직에서 제외할까요?" subtitle = "현재 등록된 테넌트를 확인하고 상태를 관리합니다." [msg.admin.tenants.admins] @@ -193,7 +210,7 @@ subtitle = "이 테넌트의 최상위 권한을 가진 소유자(조직장) 목 subtitle = "글로벌 운영 기준의 신규 테넌트를 등록합니다." [msg.admin.tenants.create.form] -domains_help = "Users with these email domains will be automatically assigned to this tenant." +domains_help = "이 도메인을 가진 이메일로 가입한 사용자는 자동으로 이 테넌트에 배정됩니다." [msg.admin.tenants.create.memo] body = "생성 직후에는 기본 활성 상태로 부여되며, 필요 시 상태를 수정하세요." @@ -203,19 +220,19 @@ subtitle = "Tenant 권한 정책은 추후 Keto 연계로 확장 예정입니다 subtitle = "필수 정보만 입력해도 생성 가능합니다. Slug는 없으면 자동 생성됩니다." [msg.admin.tenants.members] -empty = "소속된 사용자가 없습니다." desc = "조직에 소속된 사용자 목록을 확인합니다." +empty = "소속된 사용자가 없습니다." limit_notice = "하위 조직이 많아 상위 10개 조직의 멤버만 표시됩니다." [msg.admin.tenants.registry] count = "총 {{count}}개 테넌트" [msg.admin.tenants.schema] -empty = "No custom fields defined. Click \"Add Field\" to begin." -missing_id = "Tenant ID missing" -subtitle = "Define custom attributes for users in this tenant." -update_error = "Failed to update schema" -update_success = "Schema updated successfully" +empty = "등록된 커스텀 필드가 없습니다. 필드 추가를 눌러 시작하세요." +missing_id = "테넌트 ID가 없습니다." +subtitle = "이 테넌트의 사용자에게 적용할 커스텀 속성을 정의합니다." +update_error = "스키마 업데이트에 실패했습니다." +update_success = "스키마가 성공적으로 업데이트되었습니다." [msg.admin.tenants.sub] empty = "하위 테넌트가 없습니다." @@ -223,15 +240,28 @@ subtitle = "현재 테넌트 하위에 생성된 조직입니다." [msg.admin.users] +[msg.admin.users.bulk] +delete_confirm = "선택한 {{count}}명의 사용자를 정말로 삭제하시겠습니까?" +delete_success = "{{count}}명의 사용자가 삭제되었습니다." +description = "CSV 파일을 통해 사용자를 일괄 등록하거나 관리합니다." +move_description = "선택한 사용자를 다른 테넌트로 일괄 이동합니다." +move_error = "사용자 이동 중 오류가 발생했습니다." +move_success = "{{count}}명의 사용자가 성공적으로 이동되었습니다." +parsed_count = "{{count}}행의 데이터가 파싱되었습니다." +update_success = "사용자 정보가 일괄 업데이트되었습니다." + [msg.admin.users.create] error = "사용자 생성에 실패했습니다." password_required = "비밀번호를 입력하거나 자동 생성을 사용해 주세요." +success = "사용자가 성공적으로 생성되었습니다." [msg.admin.users.create.account] subtitle = "새로운 사용자를 시스템에 등록합니다." [msg.admin.users.create.form] email_required = "이메일은 필수입니다." +field_invalid = "{{label}} 형식이 올바르지 않습니다." +field_required = "{{label}}은(는) 필수입니다." name_required = "이름은 필수입니다." password_auto_help = "비워두면 시스템이 초기 비밀번호를 자동 생성합니다." password_manual_help = "초기 비밀번호를 직접 설정합니다." @@ -248,6 +278,7 @@ update_error = "사용자 수정에 실패했습니다." update_success = "사용자 정보가 수정되었습니다." [msg.admin.users.detail.form] +field_required = "필수입니다." name_required = "이름은 필수입니다." [msg.admin.users.detail.security] @@ -259,6 +290,10 @@ empty = "검색 결과가 없습니다." fetch_error = "사용자 목록 조회에 실패했습니다." subtitle = "시스템 사용자를 조회하고 관리합니다. (Local DB)" +[msg.admin.users.list.columns] +description = "테이블에 표시할 컬럼을 선택합니다." +no_custom = "이 테넌트에 정의된 커스텀 필드가 없습니다." + [msg.admin.users.list.registry] count = "총 {{count}}명의 사용자가 등록되어 있습니다." @@ -266,9 +301,10 @@ count = "총 {{count}}명의 사용자가 등록되어 있습니다." error = "오류가 발생했습니다." loading = "로딩 중..." no_description = "설명이 없습니다." -saving = "저장 중..." +parsing = "데이터 파싱 중..." requesting = "요청 중..." -unknown_error = "unknown error" +saving = "저장 중..." +unknown_error = "알 수 없는 오류" [msg.dev] logout_confirm = "로그아웃 하시겠습니까?" @@ -282,23 +318,20 @@ loading = "감사 로그를 불러오는 중..." subtitle = "현재 테넌트/앱 범위의 DevFront 작업 이력을 조회합니다." [msg.dev.clients] -copy_client_id = "Client ID가 복사되었습니다." +deleted = "앱이 삭제되었습니다." +delete_confirm = "정말로 이 앱을 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다." +delete_error = "삭제 실패: {{error}}" load_error = "Error loading clients: {{error}}" loading = "Loading apps..." showing = "Showing {{shown}} of {{total}} apps" -status_update_error = "Failed to update client status" -status_updated = "앱이 {{status}}되었습니다." -deleted = "앱이 삭제되었습니다." -delete_error = "삭제 실패: {{error}}" -delete_confirm = "정말로 이 앱을 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다." [msg.dev.clients.consents] empty = "No consents found." load_error = "Error loading consents: {{error}}" loading = "Loading consents..." +revoke_confirm = "정말로 이 사용자의 권한을 철회하시겠습니까? 철회 시 사용자는 다음 접속 시 다시 동의해야 합니다." showing = "Showing {{from}} to {{to}} of {{total}} users" subtitle = "OIDC Relying Party 사용자 권한을 검토·관리합니다." -revoke_confirm = "정말로 이 사용자의 권한을 철회하시겠습니까? 철회 시 사용자는 다음 접속 시 다시 동의해야 합니다." [msg.dev.clients.details] copy_client_id = "Client ID가 복사되었습니다." @@ -325,14 +358,14 @@ note = "엔드포인트는 읽기 전용으로 유지하고, 비밀키 재발행 [msg.dev.clients.general] load_error = "Error loading client: {{error}}" loading = "Loading client..." -saved = "설정이 저장되었습니다." save_error = "저장 실패: {{error}}" +saved = "설정이 저장되었습니다." status_changed = "상태가 {{status}}로 변경되었습니다." [msg.dev.clients.federation] -subtitle = "이 애플리케이션의 외부 IdP 설정을 관리합니다." add_subtitle = "외부 OIDC 제공자를 연결합니다." empty = "등록된 IdP 설정이 없습니다." +subtitle = "이 애플리케이션의 외부 IdP 설정을 관리합니다." [msg.dev.clients.general.identity] logo_help = "인증 화면에 표시될 PNG/SVG URL입니다." @@ -346,8 +379,8 @@ empty = "등록된 스코프가 없습니다." subtitle = "이 앱이 요청할 수 있는 권한 범위를 정의합니다." [msg.dev.clients.general.security] -private_help = "Server side App (서버 사이드 앱): Node.js, Java 등 비밀키를 안전하게 보관 가능한 경우 사용합니다." pkce_help = "PKCE 앱 (SPA/모바일): 브라우저나 앱처럼 비밀키를 보관하기 어려운 경우 사용하며, PKCE가 강제됩니다." +private_help = "Server side App (서버 사이드 앱): Node.js, Java 등 비밀키를 안전하게 보관 가능한 경우 사용합니다." subtitle = "앱 유형을 선택하세요. 보안 수준에 따라 인증 방식이 달라집니다." [msg.dev.clients.help] @@ -400,7 +433,6 @@ approved_device = "승인 기기: {{device}}" approved_ip = "승인 IP: {{ip}}" audit_empty = "최근 접속 이력이 없습니다." audit_load_error = "접속이력을 불러오지 못했습니다." -render_error = "대시보드 렌더링 오류: {{error}}" auth_method = "인증수단: {{method}}" client_id = "Client ID: {{id}}" client_id_missing = "Client ID 없음" @@ -408,6 +440,7 @@ current_status = "현재 상태: {{status}}" last_auth = "최근 인증: {{value}}" link_missing = "이동할 페이지 주소(Client URI)가 설정되지 않았습니다." link_open_error = "해당 링크를 열 수 없습니다." +render_error = "대시보드 렌더링 오류: {{error}}" session_id_copied = "세션 ID가 복사되었습니다." [msg.userfront.dashboard.activities] @@ -432,7 +465,7 @@ empty = "요청된 권한이 없습니다." load_error = "접속이력을 불러오지 못했습니다." [msg.userfront.error] -detail_contact = "msg.userfront.error.detail_contact" +detail_contact = "관리자에게 문의해 주세요." detail_generic = "오류가 발생했습니다." detail_request = "요청을 처리하는 중 문제가 발생했습니다." id = "오류 ID: {{id}}" @@ -441,6 +474,18 @@ title_generic = "오류가 발생했습니다" title_with_code = "오류: {{code}}" type = "오류 종류: {{type}}" +[msg.userfront.error.whitelist] +"$normalizedCode" = "{{error}}" +bad_request = "입력값을 확인해 주세요." +invalid_session = "세션이 만료되었습니다. 다시 로그인해 주세요." +not_found = "요청한 페이지를 찾을 수 없습니다." +password_or_email_mismatch = "이메일 혹은 비밀번호가 일치하지 않습니다." +rate_limited = "요청이 많습니다. 잠시 후 다시 시도해 주세요." +recovery_expired = "재설정 링크가 만료되었습니다. 다시 요청해 주세요." +recovery_invalid = "재설정 링크가 유효하지 않습니다." +settings_disabled = "현재 계정 설정 화면은 준비 중입니다." +verification_required = "추가 인증이 필요합니다. 안내에 따라 진행해 주세요." + [msg.userfront.error.ory] "$normalizedCode" = "{{error}}" access_denied = "사용자가 동의를 거부했습니다." @@ -457,18 +502,6 @@ temporarily_unavailable = "인증 서버를 일시적으로 사용할 수 없습 unauthorized_client = "해당 클라이언트는 이 요청을 수행할 수 없습니다." unsupported_response_type = "지원하지 않는 응답 타입입니다." -[msg.userfront.error.whitelist] -"$normalizedCode" = "{{error}}" -bad_request = "입력값을 확인해 주세요." -invalid_session = "세션이 만료되었습니다. 다시 로그인해 주세요." -not_found = "요청한 페이지를 찾을 수 없습니다." -password_or_email_mismatch = "이메일 혹은 비밀번호가 일치하지 않습니다." -rate_limited = "요청이 많습니다. 잠시 후 다시 시도해 주세요." -recovery_expired = "재설정 링크가 만료되었습니다. 다시 요청해 주세요." -recovery_invalid = "재설정 링크가 유효하지 않습니다." -settings_disabled = "현재 계정 설정 화면은 준비 중입니다." -verification_required = "추가 인증이 필요합니다. 안내에 따라 진행해 주세요." - [msg.userfront.forgot] description = "계정과 연결된 이메일 주소 또는 휴대폰 번호를 입력하시면, 비밀번호를 재설정할 수 있는 링크를 보내드립니다." dry_send = "drySend 모드: 실제 이메일/SMS는 발송되지 않습니다." @@ -493,7 +526,6 @@ token_missing = "로그인 토큰을 확인할 수 없습니다." verification_failed = "승인 처리에 실패했습니다: {{error}}" [msg.userfront.login.link] -approved = "링크로 로그인 되었습니다. 잠시 후 로그인 화면으로 이동합니다." helper = "입력하신 정보로 로그인 링크를 전송합니다." missing_login_id = "이메일 또는 휴대폰 번호를 입력해 주세요." missing_phone = "휴대폰 번호를 입력해 주세요." @@ -556,8 +588,6 @@ organization = "소속 및 구분 정보입니다." security = "비밀번호를 안전하게 관리합니다." [msg.userfront.qr] -approve_error = "QR 승인 실패: {{error}}" -approve_success = "QR 승인 완료! PC 화면에서 로그인이 진행됩니다." camera_error = "카메라 오류: {{error}}" permission_error = "카메라 권한 요청에 실패했습니다. 브라우저/OS 설정을 확인해주세요." permission_required = "카메라 권한이 필요합니다." @@ -597,8 +627,8 @@ disabled = "현재 계정 설정 화면은 준비 중입니다." [msg.userfront.signup] failed = "가입 실패: {{error}}" -privacy_full = "\n개인정보 수집 및 이용 동의\n\n바론서비스 개인정보처리방침\n\n제1조 (목적)\n바론컨설턴트(이하 \"회사\")는 바론서비스(이하 \"서비스\")를 이용하는 고객(이하 \"이용자\")의 개인정보를 보호하고, 「개인정보 보호법」에 따라 책임과 의무를 다하기 위해 본 개인정보처리방침을 마련했습니다. 본 방침은 이용자가 제공한 개인정보가 어떻게 수집, 이용, 보관, 보호되는지를 설명합니다.\n제2조 (개인정보의 처리목적)\n회사는 다음의 목적을 위해 개인정보를 처리합니다. 처리하고 있는 개인정보는 다음의 목적 이외의 용도로는 이용되지 않으며, 이용 목적이 변경되는 경우에는 「개인정보 보호법」 제18조에 따라 별도의 동의를 받는 등 필요한 조치를 이행할 예정입니다.\n- 본인확인: 회원가입 및 관리를 위한 본인 확인, 전화 또는 이메일을 통한 연락\n- 서비스 제공: 각종 통보 및 서비스 제공을 위한 업무 처리\n- 제품소개서 다운로드: 설명자료 전달\n- 상담 및 데모 신청: 상담 제공 및 데모 제공, 계약 처리자 정보 수집\n- 행사 참가 신청: 참석 안내 및 세미나/설명회/교육 제공\n- 보안가이드 제공: 안내자료 전달\n- 기술지원 문의: 서비스 사용 지원\n- 서비스 개선 의견 접수: 서비스 품질 개선\n- 마케팅 활동: 동의한 고객에 한해 뉴스레터 및 매거진 발송\n제3조 (개인정보의 처리 및 보유 기간)\n① 회사는 법령에 따른 개인정보 보유 및 이용기간 또는 정보주체로부터 개인정보를 수집 시 동의받은 개인정보 보유 및 이용기간 내에서 개인정보를 처리 및 보유합니다.\n② 각각의 개인정보 처리 및 보유 기간은 다음과 같습니다:\n- 회원정보: 회원가입일부터 회원탈퇴 후 1년까지\n- 홍보, 상담, 계약용 개인정보: 2년\n제4조 (개인정보의 제3자 제공)\n① 회사는 정보주체의 개인정보를 제2조에서 명시한 범위 내에서만 처리하며, 정보 주체의 동의, 법률의 특별한 규정 등 「개인정보 보호법」 제17조 및 제18조에 해당하는 경우에만 개인정보를 제3자에게 제공합니다.\n② 회사는 다음과 같이 개인정보를 제3자에게 제공하고 있습니다:\n- 제공받는 자: 수사기관 및 유관기관, 피신고업체\n- 이용 목적: 개인정보 침해 민원 처리\n- 제공하는 개인정보 항목: 성명, 연락처, 이메일\n- 보유 및 이용기간: 법령에서 정한 보존기간 및 제공목적 달성 시 파기\n제5조 (개인정보 처리 위탁)\n① 회사는 개인정보 처리업무를 외부 업체에 위탁하지 않으며, 자체적으로 처리하고 있습니다.\n② 회사가 특정 업무(예: 채용 업무)를 외부 업체에 위탁할 경우, 개인정보 처리방침 시행 전 회사 홈페이지에서 공지한 후 정보주체의 동의를 받은 후 위탁합니다.\n제6조 (정보주체의 권리·의무 및 행사 방법)\n① 정보주체는 회사에 대해 언제든지 개인정보 열람, 정정, 삭제, 처리정지 요구 등의 권리를 행사할 수 있습니다.\n② 권리 행사는 다음과 같은 방법으로 할 수 있습니다:\n- 서면: 회사 주소로 서면 제출\n- 전자우편: 회사 이메일로 요청\n- 모사전송(FAX): 회사 FAX로 요청\n③ 권리 행사는 정보주체의 법정대리인이나 위임을 받은 자를 통해 대리로도 가능합니다. 이 경우 “개인정보 처리 방법에 관한 고시” 별지 제11호 서식에 따른 위임장을 제출해야 합니다.\n④ 개인정보 열람 및 처리정지 요구는 「개인정보 보호법」 제35조 제4항, 제37조 제2항에 따라 제한될 수 있습니다.\n⑤ 개인정보의 정정 및 삭제 요구는 다른 법령에 따라 수집된 개인정보인 경우 제한될 수 있습니다.\n⑥ 회사는 권리 행사를 요청한 자가 본인 또는 정당한 대리인인지를 확인합니다.\n제7조 (처리하는 개인정보의 항목)\n회사는 다음의 개인정보 항목을 처리합니다:\n- 수집 항목:\n- 필수 항목: 성명, 휴대전화번호, 이메일\n- 선택 항목: 회사전화번호, 문의사항\n- 수집 방법:\n- 홈페이지, 전화, 이메일을 통해 수집\n제8조 (개인정보의 파기)\n① 회사는 개인정보 보유 기간의 경과, 처리 목적 달성 등 개인정보가 불필요하게 되었을 때 지체 없이 해당 개인정보를 파기합니다.\n② 정보주체로부터 동의받은 개인정보 보유 기간이 경과하거나 처리 목적이 달성된 경우에도 다른 법령에 따라 개인정보를 계속 보존해야 할 경우에는, 해당 개인정보를 별도의 데이터베이스(DB)로 옮기거나 보관 장소를 달리하여 보존합니다.\n③ 개인정보 파기의 절차 및 방법은 다음과 같습니다:\n- 파기 절차: 회사는 파기 사유가 발생한 개인정보를 선정하고, 개인정보 보호책임자의 승인을 받아 개인정보를 파기합니다.\n- 파기 방법: 전자적 파일 형태로 기록된 개인정보는 복구할 수 없도록 기술적 방법을 사용해 삭제하며, 종이 문서에 기록된 개인정보는 분쇄기로 분쇄하거나 소각하여 파기합니다.\n제9조 (개인정보의 안전성 확보 조치)\n회사는 개인정보의 안전성 확보를 위해 다음과 같은 조치를 취합니다:\n- 관리적 조치: 내부관리계획 수립·시행, 정기적 직원 교육\n- 기술적 조치: 개인정보처리시스템 접근 권한 관리, 접근통제시스템 설치, 고유식별정보 암호화, 보안 프로그램 설치\n- 물리적 조치: 전산실 및 자료보관실 접근 통제\n제10조 (개인정보 자동 수집 장치의 설치·운영 및 거부에 관한 사항)\n회사는 쿠키(Cookie)를 사용하지 않습니다. 쿠키는 이용자의 이용 정보를 저장하고 수시로 불러오는 작은 파일로, 바론서비스에서는 쿠키를 사용하지 않습니다.\n제11조 (개인정보 보호책임자)\n회사는 개인정보 처리에 관한 업무를 총괄하여 책임지고, 개인정보 처리와 관련된 정보주체의 불만처리 및 피해구제를 위해 개인정보 보호책임자를 지정하고 있습니다.\n개인정보 보호책임자:\n- 성명: 염승호\n- 직책: 수석연구원\n- 연락처: 02-2141-7448\n- 팩스번호: 02-2141-7599\n- 이메일: b23008@baroncs.co.kr\n제12조 (개인정보 열람청구)\n정보주체는 「개인정보 보호법」 제35조에 따른 개인정보 열람 청구를 아래 부서에 할 수 있습니다. 회사는 정보주체의 개인정보 열람청구가 신속하게 처리되도록 노력하겠습니다.\n개인정보 열람청구 접수·처리 부서:\n- 부서명: 총괄기획실\n- 담당자: 권혁진\n- 연락처: 02-2141-7465\n- 팩스번호: 02-2141-7599\n- 이메일: baroncs@baroncs.co.kr\n제13조 (권익침해 구제방법)\n정보주체는 개인정보 침해로 인한 구제를 위해 개인정보분쟁조정위원회, 한국인터넷진흥원 개인정보해신고센터 등에 분쟁 해결이나 상담을 신청할 수 있습니다.\n- 개인정보분쟁조정위원회: (국번없이) 1833-6972 (www.kopico.go.kr)\n- 개인정보침해신고센터: (국번없이) 118 (privacy.kisa.or.kr)\n- 대검찰청: (국번없이) 1301 (www.spo.go.kr)\n- 경찰청: (국번없이) 182 (www.police.go.kr)\n제14조 (개인정보 처리방침의 변경)\n본 개인정보처리방침은 법령, 정책 또는 보안 기술의 변경에 따라 내용의 추가, 삭제 및 수정이 있을 시, 개정 최소 7일 전에 홈페이지를 통해 사전 공지합니다.\n\n부칙\n제1조 (시행일자)\n이 개인정보처리방침은 2024년 10월 1일부터 시행됩니다.\n제2조 (개정 및 고지의 의무)\n회사는 개인정보처리방침을 변경하는 경우, 변경사항을 시행일자 7일 전부터 서비스 내 공지사항 페이지를 통해 고지할 것입니다. 다만, 이용자의 권리나 의무에 중대한 변경이 발생하는 경우에는 시행일자 30일 전부터 고지합니다.\n제3조 (유효성)\n본 개인정보처리방침의 일부 조항이 법적 또는 기타 사유로 인해 무효화되거나 시행할 수 없는 경우, 나머지 조항들은 계속해서 유효합니다. 무효화된 조항은 관련 법령에 부합하는 방식으로 수정되어 효력을 지속합니다.\n제4조 (변경 통지의 방법)\n회사는 개인정보처리방침의 변경 시, 다음의 방법으로 이용자에게 고지합니다:\n- 서비스 초기화면 또는 팝업 공지\n- 이메일 발송\n- 회사 홈페이지 공지사항\n제5조 (비회원의 개인정보 보호)\n회사는 비회원의 개인정보도 회원과 동일한 수준으로 보호합니다. 비회원이 개인정보 제공을 거부할 경우 일부 서비스 이용에 제한이 있을 수 있습니다.\n제6조 (14세 미만 아동의 개인정보 보호)\n회사는 14세 미만 아동의 개인정보를 수집하지 않습니다. 만일 14세 미만 아동의 개인정보가 수집된 경우, 법정 대리인의 동의를 받아야 하며, 법정 대리인의 동의 없이 수집된 경우 이를 지체 없이 파기합니다.\n제7조 (개인정보의 국외 이전)\n회사는 이용자의 개인정보를 국외로 이전하지 않으며, 향후 필요한 경우, 사전에 이용자의 동의를 받습니다.\n제8조 (기타)\n본 방침에 명시되지 않은 사항은 회사의 내부 방침과 관련 법령에 따릅니다.\n" -tos_full = "\n바론 소프트웨어 이용약관\n\n제1장 총칙\n제1조 (목적)\n이 약관은 바론컨설턴트(이하 \"회사\"라 합니다)가 제공하는 바론소프트웨어(이하 \"서비스\"라 합니다)를 이용함에 있어 회사와 이용자 간의 권리, 의무 및 책임사항과 기타 필요한 사항을 정하는 것을 목적으로 합니다.\n제2조 (용어의 정의)\n① 본 약관에서 사용하는 용어의 정의는 다음과 같습니다:\n- “서비스”란 회사가 제공하는 소프트웨어 및 관련 제반 서비스를 의미합니다.\n- “이용자”란 회사의 서비스에 접속하여 본 약관에 따라 회사가 제공하는 서비스를 이용하는 회원 및 비회원을 말합니다.\n- “회원”이란 본 약관에 동의하고 회사와 이용계약을 체결한 자를 의미합니다.\n- “비회원”이란 회원가입을 하지 않고 회사가 제공하는 일부 서비스를 이용하는 자를 말합니다.\n제3조 (약관의 효력 및 변경)\n① 본 약관은 이용자가 본 약관에 동의하고, 회사가 이에 대한 승낙을 완료함으로써 효력이 발생합니다. ② 회사는 필요한 경우 본 약관을 변경할 수 있으며, 변경된 약관은 서비스 화면에 공지된 후 효력이 발생합니다.\n제4조 (약관 외 준칙)\n본 약관에 명시되지 않은 사항에 대해서는 대한민국의 관련 법령과 상관습에 따릅니다.\n제2장 서비스 이용계약\n제5조 (이용계약의 성립)\n이용계약은 이용자가 약관의 내용에 동의하고, 회사가 제공하는 소정의 회원가입 신청서를 작성하여 가입을 완료한 후, 회사가 이를 승인함으로써 성립합니다.\n제6조 (이용계약의 유보와 거절)\n① 회사는 다음 각 호에 해당하는 경우 이용계약의 성립을 유보하거나 거절할 수 있습니다: - 신청서의 내용이 허위로 판명된 경우 - 서비스 제공이 기술적으로 어려운 경우\n제7조 (계약사항의 변경)\n회원은 개인정보 관리 메뉴를 통해 언제든지 자신의 정보를 열람하고 수정할 수 있습니다. 회원의 정보가 변경된 경우 즉시 수정해야 하며, 수정하지 않아 발생하는 문제의 책임은 회원에게 있습니다.\n제3장 개인정보 보호\n제8조 (개인정보 보호의 원칙)\n① 회원의 개인정보는 관련 법령에 따라 보호됩니다. ② 회사는 개인정보 보호와 관련된 세부 사항을 별도로 마련한 개인정보처리방침에 따라 관리하며, 이용자는 언제든지 해당 방침을 통해 개인정보 관리에 대한 자세한 내용을 확인할 수 있습니다.\n제9조 (개인정보처리방침 준수)\n① 회사는 개인정보 보호와 관련된 구체적인 사항을 개인정보처리방침에 따라 관리합니다. ② 개인정보의 수집, 이용, 제공, 보관, 보호 등에 관한 사항은 회사의 개인정보처리방침을 따르며, 이용자는 회사 웹사이트에서 이를 확인할 수 있습니다. ③ 회사는 개인정보 보호를 위해 최선을 다하며, 관련 법령에 따라 이용자의 개인정보를 안전하게 관리합니다.\n제10조 (14세 미만 아동의 개인정보 보호)\n① 회사는 14세 미만 아동의 개인정보를 수집할 경우, 반드시 법정대리인의 동의를 받아야 합니다. ② 법정대리인은 아동의 개인정보 열람, 수정, 삭제를 요청할 수 있으며, 회사는 이를 신속하게 처리합니다. ③ 14세 미만 아동의 개인정보 보호와 관련된 구체적인 사항은 개인정보처리방침에 명시되어 있습니다.\n제4장 서비스 제공 및 이용\n제11조 (서비스 제공)\n회사는 회원의 이용 신청을 승인한 때부터 서비스를 개시합니다. 서비스 이용은 연중무휴 24시간을 원칙으로 합니다.\n제12조 (서비스의 변경 및 중단)\n회사는 서비스 제공이 어려운 경우 사전 고지 후 서비스를 변경하거나 중단할 수 있습니다.\n제5장 정보 제공 및 광고\n제13조 (정보 제공 및 광고)\n① 회사는 서비스 이용 중 필요하다고 인정되는 정보 및 광고를 제공할 수 있습니다. ② 회원은 원치 않는 정보를 수신 거부할 수 있습니다.\n제6장 게시물 관리\n제14조 (게시물의 관리)\n회사는 회원이 게시한 내용이 불법적이거나 약관에 위배될 경우 이를 삭제할 수 있습니다.\n제15조 (게시물의 저작권)\n게시물의 저작권은 회원에게 있으며, 회사는 이를 서비스 홍보 및 개선 목적으로 사용할 수 있습니다.\n제7장 계약 해지 및 이용 제한\n제16조 (계약 해지)\n회원은 언제든지 계약 해지를 요청할 수 있으며, 회사는 신속하게 처리합니다.\n제17조 (이용 제한)\n회사는 회원이 약관을 위반할 경우 서비스 이용을 제한할 수 있습니다.\n제8장 손해 배상 및 면책 조항\n제18조 (손해 배상)\n회사는 무료로 제공되는 서비스와 관련하여 회원에게 발생한 손해에 대해 책임을 지지 않습니다.\n제19조 (면책 조항)\n회사는 천재지변 등 불가항력적인 사유로 인해 서비스를 제공하지 못하는 경우 책임을 지지 않습니다.\n제9장 유료 서비스\n20조 (유료 서비스의 이용)\n① 회사는 회원에게 특정 서비스에 대해 유료로 제공할 수 있습니다. ② 유료 서비스의 이용 요금, 결제 방식, 환불 절차 등에 대한 상세 내용은 서비스 안내 페이지와 결제 화면에 명시합니다. ③ 유료 서비스 이용 요금은 회사가 정한 결제 방식에 따라 결제됩니다. 회원은 신용카드, 계좌이체, 휴대전화 결제 등 회사가 제공하는 다양한 결제 방식을 통해 요금을 납부할 수 있습니다. ④ 유료 서비스의 이용 요금은 선불 결제를 원칙으로 하며, 이용 기간 중 서비스 중지 및 해지 시 남은 이용 기간에 대한 환불은 회사의 환불 정책에 따라 처리됩니다. ⑤ 회사는 회원의 유료 서비스 이용과 관련하여 발생한 문제에 대해 최선을 다해 해결하도록 노력합니다. 다만, 회사의 고의 또는 중대한 과실이 없는 한 회원이 유료 서비스 이용 중 입은 손해에 대해서는 책임을 지지 않습니다.\n제21조(환불 정책)\n① 회원은 결제 후 7일 이내에 서비스 이용을 시작하지 않은 경우, 요금 전액을 환불받을 수 있습니다. ② 유료 서비스 이용 중 부득이한 사유로 서비스가 중지된 경우, 회사는 이용하지 않은 부분에 대해 환불 절차를 밟습니다. ③ 회원의 귀책사유로 인해 서비스 이용이 중지된 경우, 환불이 불가능합니다. ④ 환불은 회원이 지정한 계좌로 환불 절차를 거치며, 환불 요청 후 7일 이내에 처리됩니다.\n제22조 (유료 서비스의 중지 및 해지)\n① 회원이 유료 서비스를 해지하고자 하는 경우, 회사의 고객 지원 센터에 해지 신청을 해야 합니다. ② 회사는 회원이 약관을 위반하거나 부정한 방법으로 유료 서비스를 이용한 경우, 유료 서비스 이용을 즉시 중지하고 계약을 해지할 수 있습니다.\n제10장 양도 금지\n제23조 (양도 금지)\n회원은 서비스 이용권한, 기타 이용계약상의 지위를 제3자에게 양도, 증여할 수 없으며, 이를 담보로 제공할 수 없습니다.\n제11장 관할 법원\n제24조 (분쟁 해결)\n서비스 이용과 관련하여 분쟁이 발생한 경우, 회사와 회원은 성실히 협의하여 해결합니다.\n제25조 (관할 법원)\n본 약관에 따른 분쟁은 서울중앙지방법원을 관할 법원으로 합니다.\n부칙\n본 약관은 2024년 10월 1일부터 시행됩니다.\n" +privacy_full = "개인정보 수집 및 이용 동의 전문..." +tos_full = "서비스 이용약관 전문..." [msg.userfront.signup.agreement] title = "서비스 이용을 위해\n약관에 동의해주세요" @@ -742,11 +772,9 @@ status = "STATUS" time = "TIME" [ui.admin.groups] -add_unit = "조직 추가" import_csv = "CSV 임포트" [ui.admin.groups.create] -description = "부서나 팀과 같은 새로운 조직 단위를 추가합니다." title = "새 그룹 생성" [ui.admin.groups.detail] @@ -763,8 +791,6 @@ desc_label = "설명" desc_placeholder = "그룹 용도 설명" name_label = "그룹 이름" name_placeholder = "예: 개발팀, 인사팀" -parent_label = "상위 조직" -parent_none = "없음 (최상위)" submit = "생성하기" unit_level_label = "조직 레벨" unit_level_placeholder = "예: 본부, 팀" @@ -781,8 +807,6 @@ remove = "제거" [ui.admin.groups.table] actions = "ACTIONS" -created_at = "생성일" -level = "레벨" members = "MEMBERS" name = "NAME" @@ -797,10 +821,16 @@ logout = "로그아웃" overview = "개요" relying_parties = "애플리케이션(RP)" tenant_dashboard = "테넌트 대시보드" -tenants = "테넌트" user_groups = "유저 그룹" +tenants = "테넌트" users = "사용자" +[ui.admin.org] +download_template = "템플릿 다운로드" +import_btn = "임포트" +import_title = "조직도 대량 등록" +start_import = "임포트 시작" + [ui.admin.overview] kicker = "Global Overview" title = "Tenant-independent control plane" @@ -810,10 +840,17 @@ title = "Admin playbook" [ui.admin.overview.quick_links] add_tenant = "테넌트 추가" -tenant_dashboard = "테넌트 대시보드" +api_key_management = "API 키 관리" +user_management = "사용자 관리" title = "빠른 이동" view_audit_logs = "감사 로그 보기" +[ui.admin.overview.summary] +audit_events_24h = "24시간 이벤트" +oidc_clients = "OIDC 클라이언트" +policy_gate = "정책 게이트" +total_tenants = "전체 테넌트" + [ui.admin.profile] manageable_tenants = "관리 가능한 테넌트" @@ -864,15 +901,15 @@ action = "Create" section = "Tenants" [ui.admin.tenants.create.form] -description = "Description" +description = "설명" domains_label = "Allowed Domains (Comma separated)" domains_placeholder = "example.com, example.kr" -name = "Tenant name" -parent = "상위 테넌트 (선택)" +name = "테넌트 이름" +parent = "상위 테넌트" slug = "Slug" slug_placeholder = "tenant-slug" -status = "Status" -type = "테넌트 유형" +status = "상태" +type = "유형" [ui.admin.tenants.create.memo] title = "정책 메모" @@ -895,12 +932,13 @@ title = "상세" select_placeholder = "테넌트를 선택하세요" [ui.admin.tenants.members] -title = "Tenant Members ({{count}})" -direct_label = "소속" -total_label = "전체" -list_title = "구성원 관리" -direct = "소속 멤버" descendants = "하위 조직 멤버" +direct = "소속 멤버" +direct_label = "직속" +list_title = "구성원 관리" +title = "테넌트 구성원 ({{count}})" +total = "전체" +total_label = "전체" [ui.admin.tenants.members.table] email = "EMAIL" @@ -908,40 +946,38 @@ name = "NAME" role = "ROLE" status = "STATUS" -[ui.admin.tenants.profile] -allowed_domains = "허용된 도메인 (콤마로 구분)" -allowed_domains_help = "이 도메인을 가진 이메일로 가입한 사용자는 자동으로 이 테넌트에 배정됩니다." -approve_button = "테넌트 승인" -description = "설명" -name = "테넌트 이름" -slug = "슬러그 (Slug)" -status = "상태" -subtitle = "슬러그 및 상태 변경은 즉시 적용됩니다." -title = "테넌트 프로필" -type = "테넌트 유형" - [ui.admin.tenants.registry] title = "Tenant registry" [ui.admin.tenants.schema] -add_field = "Add Field" -save = "Save Schema Changes" +add_field = "필드 추가" +save = "스키마 저장" title = "User Schema Extension" [ui.admin.tenants.schema.field] +admin_only = "관리자 전용" key = "Field Key (ID)" key_placeholder = "e.g. employee_id" -label = "Display Label" -label_placeholder = "e.g. 사번" -type = "Type" +label = "표시 레이블" +label_placeholder = "예: 사번" +required = "필수 여부" +type = "타입" type_boolean = "Boolean" +type_date = "Date" type_number = "Number" type_text = "Text" +validation_placeholder = "정규표현식 (선택 사항)" [ui.admin.tenants.sub] add = "하위 테넌트 추가" +add_dialog_desc = "하위 테넌트로 추가할 테넌트를 선택하세요." +add_dialog_title = "하위 테넌트 추가" +add_existing = "기존 테넌트 추가" manage = "관리" -title = "Sub-tenants ({{count}})" +no_candidates = "추가 가능한 테넌트가 없습니다." +search_placeholder = "검색..." +title = "하위 테넌트 ({{count}})" +tree_search_placeholder = "트리에서 검색..." [ui.admin.tenants.sub.table] action = "ACTION" @@ -951,14 +987,26 @@ status = "STATUS" [ui.admin.tenants.table] actions = "ACTIONS" +members = "멤버수" name = "NAME" slug = "SLUG" status = "STATUS" -type = "TYPE" +type = "유형" updated = "UPDATED" [ui.admin.users] +[ui.admin.users.bulk] +do_move = "이동 실행" +download_template = "템플릿 받기" +move_group = "테넌트 일괄 이동" +move_title = "사용자 일괄 이동" +no_department = "부서 없음" +select_group = "대상 테넌트 선택" +selected_count = "{{count}}명 선택됨" +start_upload = "업로드 시작" +title = "일괄 작업" + [ui.admin.users.create] back = "목록으로 돌아가기" go_list = "목록으로 이동" @@ -981,19 +1029,15 @@ department = "부서" department_placeholder = "개발팀" email = "이메일" email_placeholder = "user@example.com" -job_title = "직무" -job_title_placeholder = "프론트엔드 개발" name = "이름" name_placeholder = "홍길동" password = "비밀번호" password_placeholder = "********" phone = "전화번호" phone_placeholder = "010-1234-5678" -position = "직급" -position_placeholder = "수석/책임/선임" -role = "역할 (Role)" -tenant = "테넌트 (Tenant)" -tenant_global = "시스템 전역 (소속 없음)" +role = "역할" +tenant = "테넌트" +tenant_global = "시스템 전역" [ui.admin.users.create.password_generated] title = "초기 비밀번호 생성 완료" @@ -1007,23 +1051,16 @@ title = "사용자 상세" section = "Users" [ui.admin.users.detail.custom_fields] -title = "테넌트 확장 정보 (Custom Fields)" +multi_title = "테넌트별 프로필 관리" [ui.admin.users.detail.form] -department = "부서" -department_placeholder = "개발팀" -job_title = "직무" -job_title_placeholder = "프론트엔드 개발" -name = "이름" -name_placeholder = "홍길동" +name_required = "이름은 필수입니다." phone = "전화번호" phone_placeholder = "010-1234-5678" -position = "직급" -position_placeholder = "수석/책임/선임" -role = "역할 (Role)" +role = "역할" status = "상태" -tenant = "테넌트 (Tenant)" -tenant_global = "시스템 전역 (소속 없음)" +tenant = "대표 소속 테넌트" +tenant_global = "시스템 전역" [ui.admin.users.detail.security] password = "비밀번호 변경" @@ -1037,34 +1074,48 @@ title = "소속 및 조직 정보" [ui.admin.users.list] add = "사용자 추가" -delete_aria = "사용자 삭제: {{name}}" -edit_aria = "사용자 수정: {{name}}" +bulk_import = "일괄 임포트" +empty = "검색 결과가 없습니다." +fetch_error = "사용자 목록 조회에 실패했습니다." search_placeholder = "이름 또는 이메일 검색..." -tenant_slug = "Slug: {{slug}}" -title = "사용자 관리" +subtitle = "시스템 사용자를 조회하고 관리합니다." [ui.admin.users.list.breadcrumb] list = "List" section = "Users" +[ui.admin.users.list.columns] +title = "컬럼 설정" + +[ui.admin.users.list.filter] +tenant = "테넌트 필터" + [ui.admin.users.list.registry] -title = "User Registry" +count = "총 {{count}}명의 사용자가 등록되어 있습니다." [ui.admin.users.list.table] actions = "ACTIONS" created = "CREATED" name_email = "NAME / EMAIL" -position_job = "POSITION / JOB" role = "ROLE" status = "STATUS" tenant_dept = "TENANT / DEPT" +[ui.admin.users.table] +email = "이메일" +name = "이름" +role = "역할" + + [ui.common] add = "추가" +all = "전체" admin_only = "관리자 전용" assign = "할당" back = "돌아가기" cancel = "취소" +change_file = "파일 변경" +clear_search = "검색 초기화" close = "닫기" collapse = "접기" confirm = "확인" @@ -1073,46 +1124,46 @@ create = "생성" delete = "삭제" details = "상세정보" edit = "편집" +export = "내보내기" +fail = "실패" +go_home = "홈으로" +view = "보기" hyphen = "-" -language = "언어" -language_en = "English" -language_ko = "한국어" +manage = "관리" na = "N/A" never = "Never" -next = "Next" +next = "다음" none = "없음" page_of = "Page {{page}} of {{total}}" prev = "이전" -previous = "Previous" +previous = "이전" qr = "QR" +reset = "초기화" read_only = "읽기 전용" refresh = "새로고침" -reset = "초기화" -requesting = "요청 중..." +remove = "제외" resend = "재발송" retry = "다시 시도" save = "저장" search = "검색" -select = "사용자 선택" -select_placeholder = "사용자를 선택하세요" +select = "선택" +select_file = "파일 선택" +select_placeholder = "선택하세요" show_more = "+ 더보기" +language = "언어" +language_ko = "한국어" +language_en = "English" +success = "성공" theme_dark = "Dark" theme_light = "Light" theme_toggle = "테마 전환" unknown = "Unknown" -view = "보기" -manage = "관리" -remove = "제외" [ui.common.badge] admin_only = "Admin only" command_only = "Command only" system = "System" -[ui.common.role] -admin = "Admin" -user = "User" - [ui.common.status] active = "활성" blocked = "차단됨" @@ -1135,7 +1186,6 @@ env_badge = "Env: dev" scope_badge = "Scoped to /dev" [ui.dev.nav] -audit_logs = "감사 로그" clients = "연동 앱" logout = "로그아웃" @@ -1165,7 +1215,6 @@ unknown_email = "unknown@example.com" unknown_name = "Unknown User" [ui.dev.clients] -copy_client_id = "Copy client id" new = "연동 앱 추가" search_placeholder = "연동 앱 이름/ID로 검색..." tenant_scoped = "Tenant-scoped" @@ -1184,10 +1233,8 @@ type_label = "유형:" export_csv = "Export CSV" revoke = "Revoke" revoked_at = "철회일: " -scope_all = "모든 권한" scope_label = "권한:" search_placeholder = "사용자 ID, 이름, 이메일로 검색" -status_all = "All Statuses" status_label = "Status:" status_revoked = "Revoked" subject = "Subject" @@ -1195,7 +1242,6 @@ title = "User Consent Grants" [ui.dev.clients.consents.breadcrumb] clients = "Clients" -current = "User Consent Grants" home = "Home" [ui.dev.clients.consents.filters] @@ -1206,13 +1252,6 @@ active_grants = "Active Grants" avg_scopes = "Avg. Scopes per User" total_scopes = "Total Scopes Issued" -[ui.dev.clients.stats] -total = "총 애플리케이션" -active_sessions = "활성 세션" -auth_failures = "인증 실패 (24h)" -realtime = "실시간" -stable = "안정" - [ui.dev.clients.consents.table] action = "Action" first_granted = "First Granted" @@ -1224,10 +1263,6 @@ user = "User" [ui.dev.clients.details] -[ui.dev.clients.details.breadcrumb] -current = "연동 앱 상세" -section = "연동 앱" - [ui.dev.clients.details.credentials] client_id = "Client ID" client_secret = "Client Secret" @@ -1268,13 +1303,6 @@ title = "Identity Federation" add_title = "Add Identity Provider" add_btn = "Add Provider" -[ui.dev.clients.general.breadcrumb] -section = "Applications" - -[ui.dev.clients.general.footer] -client_id = "Client ID" -created_on = "Created On" - [ui.dev.clients.general.identity] description = "Description" description_placeholder = "앱에 대한 간단한 설명을 입력하세요." @@ -1457,12 +1485,9 @@ login_id = "이메일 또는 휴대폰 번호" password = "비밀번호" [ui.userfront.login.link] -action_label = "로그인 화면으로 이동" code_only = "코드만 받기({{time}})" -page_title = "링크 로그인" resend_with_time = "재발송 ({{time}})" send = "로그인 링크 전송" -title = "링크 로그인 완료" [ui.userfront.login.qr] expired = "QR 코드 만료됨" @@ -1532,9 +1557,7 @@ organization = "조직 정보" security = "보안" [ui.userfront.qr] -request_permission = "카메라 권한 요청하기" rescan = "다시 스캔" -result_failure = "승인 실패" result_success = "승인 완료" title = "Scan QR Code" @@ -1594,25 +1617,3 @@ verify = "본인인증" [ui.userfront.signup.success] action = "로그인하기" - -[msg.admin.tenants] -not_found = "테넌트를 찾을 수 없습니다." -remove_sub_confirm = '테넌트 "{{name}}"을(를) 하위 조직에서 제외할까요?' - -[msg.admin.users.create] -success = "사용자가 생성되었습니다." - -[ui.admin.tenants.sub] -add_dialog_desc = "하위 조직으로 추가할 테넌트를 선택하세요." -add_dialog_title = "하위 조직 추가" -add_existing = "기존 테넌트 추가" -no_candidates = "추가 가능한 테넌트가 없습니다." -search_placeholder = "테넌트 이름 또는 슬러그로 검색..." - -[ui.admin.tenants.table] -members = "멤버수" - -[ui.admin.users.table] -email = "이메일" -name = "이름" -role = "역할" diff --git a/locales/template.toml b/locales/template.toml index 37627a41..38372e8d 100644 --- a/locales/template.toml +++ b/locales/template.toml @@ -13,11 +13,35 @@ jangheon = "" ptc = "" saman = "" +[domain.tenant_type] +company = "" +company_group = "" +personal = "" +user_group = "" + [err] [err.common] unknown = "" +[err.backend] +authorization_pending = "" +bad_request = "" +conflict = "" +expired_token = "" +forbidden = "" +internal_error = "" +invalid_code = "" +invalid_or_expired_code = "" +invalid_session = "" +invalid_session_reference = "" +not_found = "" +not_supported = "" +password_or_email_mismatch = "" +rate_limited = "" +service_unavailable = "" +slow_down = "" + [err.userfront] [err.userfront.auth_proxy] @@ -49,6 +73,9 @@ scope_admin = "" session_ttl = "" tenant_headers = "" +[msg.admin.common] +forbidden = "" + [msg.admin.api_keys] [msg.admin.api_keys.create] @@ -90,16 +117,35 @@ count = "" [msg.admin.groups] [msg.admin.groups.list] +create_error = "" +create_success = "" +delete_confirm = "" +delete_error = "" +delete_success = "" +empty = "" +import_error = "" +import_success = "" +loading = "" subtitle = "" [msg.admin.groups.members] +add_success = "" count = "" empty = "" +remove_confirm = "" +remove_success = "" title = "" [msg.admin.groups.prompt] user_id = "" +[msg.admin.groups.roles] +assign_success = "" +description = "" +empty = "" +remove_confirm = "" +remove_success = "" + [msg.admin.header] subtitle = "" @@ -107,6 +153,12 @@ subtitle = "" idp_policy = "" scope = "" +[msg.admin.org] +hover_member_info = "" +import_description = "" +import_error = "" +import_success = "" + [msg.admin.overview] description = "" idp_fallback = "" @@ -122,14 +174,38 @@ tenant_title = "" [msg.admin.overview.quick_links] description = "" +[msg.admin.overview.summary] +audit_events_24h = "" +oidc_clients = "" +policy_gate = "" +total_tenants = "" + [msg.admin.tenants] +approve_confirm = "" +approve_success = "" delete_confirm = "" +delete_success = "" empty = "" fetch_error = "" +missing_id = "" not_found = "" remove_sub_confirm = "" subtitle = "" +[msg.admin.tenants.admins] +add_success = "" +empty = "" +remove_confirm = "" +remove_success = "" +subtitle = "" + +[msg.admin.tenants.owners] +add_success = "" +empty = "" +remove_confirm = "" +remove_success = "" +subtitle = "" + [msg.admin.tenants.create] subtitle = "" @@ -164,6 +240,16 @@ subtitle = "" [msg.admin.users] +[msg.admin.users.bulk] +delete_confirm = "" +delete_success = "" +description = "" +move_description = "" +move_error = "" +move_success = "" +parsed_count = "" +update_success = "" + [msg.admin.users.create] error = "" password_required = "" @@ -174,6 +260,8 @@ subtitle = "" [msg.admin.users.create.form] email_required = "" +field_invalid = "" +field_required = "" name_required = "" password_auto_help = "" password_manual_help = "" @@ -190,6 +278,7 @@ update_error = "" update_success = "" [msg.admin.users.detail.form] +field_required = "" name_required = "" [msg.admin.users.detail.security] @@ -201,13 +290,20 @@ empty = "" fetch_error = "" subtitle = "" +[msg.admin.users.list.columns] +description = "" +no_custom = "" + [msg.admin.users.list.registry] count = "" [msg.common] +error = "" loading = "" -saving = "" +no_description = "" +parsing = "" requesting = "" +saving = "" unknown_error = "" [msg.dev] @@ -676,16 +772,28 @@ status = "" time = "" [ui.admin.groups] +import_csv = "" [ui.admin.groups.create] title = "" +[ui.admin.groups.detail] +breadcrumb_org = "" +breadcrumb_tenant = "" +breadcrumb_unit = "" +members_subtitle = "" +members_title = "" +permissions_subtitle = "" +permissions_title = "" + [ui.admin.groups.form] desc_label = "" desc_placeholder = "" name_label = "" name_placeholder = "" submit = "" +unit_level_label = "" +unit_level_placeholder = "" [ui.admin.groups.list] title = "" @@ -717,6 +825,12 @@ user_groups = "" tenants = "" users = "" +[ui.admin.org] +download_template = "" +import_btn = "" +import_title = "" +start_import = "" + [ui.admin.overview] kicker = "" title = "" @@ -726,10 +840,20 @@ title = "" [ui.admin.overview.quick_links] add_tenant = "" -tenant_dashboard = "" +api_key_management = "" +user_management = "" title = "" view_audit_logs = "" +[ui.admin.overview.summary] +audit_events_24h = "" +oidc_clients = "" +policy_gate = "" +total_tenants = "" + +[ui.admin.profile] +manageable_tenants = "" + [ui.admin.role] rp_admin = "" super_admin = "" @@ -740,6 +864,31 @@ user = "" add = "" title = "" +[ui.admin.tenants.admins] +add_button = "" +already_admin = "" +dialog_description = "" +dialog_no_results = "" +dialog_search_hint = "" +dialog_search_placeholder = "" +dialog_title = "" +remove_title = "" +table_actions = "" +table_email = "" +table_name = "" +title = "" + +[ui.admin.tenants.owners] +add_button = "" +already_owner = "" +dialog_description = "" +dialog_title = "" +remove_title = "" +table_actions = "" +table_email = "" +table_name = "" +title = "" + [ui.admin.tenants.breadcrumb] list = "" section = "" @@ -756,9 +905,11 @@ description = "" domains_label = "" domains_placeholder = "" name = "" +parent = "" slug = "" slug_placeholder = "" status = "" +type = "" [ui.admin.tenants.create.memo] title = "" @@ -766,12 +917,27 @@ title = "" [ui.admin.tenants.create.profile] title = "" +[ui.admin.tenants.detail] +breadcrumb_list = "" +header_subtitle = "" +loading = "" +tab_federation = "" +tab_organization = "" +tab_permissions = "" +tab_profile = "" +tab_schema = "" +title = "" + +[ui.admin.tenants.list] +select_placeholder = "" + [ui.admin.tenants.members] descendants = "" direct = "" direct_label = "" list_title = "" title = "" +total = "" total_label = "" [ui.admin.tenants.members.table] @@ -789,14 +955,18 @@ save = "" title = "" [ui.admin.tenants.schema.field] +admin_only = "" key = "" key_placeholder = "" label = "" label_placeholder = "" +required = "" type = "" type_boolean = "" +type_date = "" type_number = "" type_text = "" +validation_placeholder = "" [ui.admin.tenants.sub] add = "" @@ -807,6 +977,7 @@ manage = "" no_candidates = "" search_placeholder = "" title = "" +tree_search_placeholder = "" [ui.admin.tenants.sub.table] action = "" @@ -820,10 +991,22 @@ members = "" name = "" slug = "" status = "" +type = "" updated = "" [ui.admin.users] +[ui.admin.users.bulk] +do_move = "" +download_template = "" +move_group = "" +move_title = "" +no_department = "" +select_group = "" +selected_count = "" +start_upload = "" +title = "" + [ui.admin.users.create] back = "" go_list = "" @@ -868,13 +1051,10 @@ title = "" section = "" [ui.admin.users.detail.custom_fields] -title = "" +multi_title = "" [ui.admin.users.detail.form] -department = "" -department_placeholder = "" -name = "" -name_placeholder = "" +name_required = "" phone = "" phone_placeholder = "" role = "" @@ -887,21 +1067,32 @@ password = "" password_placeholder = "" title = "" +[ui.admin.users.detail.tenants_section] +additional = "" +primary = "" +title = "" + [ui.admin.users.list] add = "" -delete_aria = "" -edit_aria = "" +bulk_import = "" +empty = "" +fetch_error = "" search_placeholder = "" -tenant_slug = "" -title = "" +subtitle = "" [ui.admin.users.list.breadcrumb] list = "" section = "" -[ui.admin.users.list.registry] +[ui.admin.users.list.columns] title = "" +[ui.admin.users.list.filter] +tenant = "" + +[ui.admin.users.list.registry] +count = "" + [ui.admin.users.list.table] actions = "" created = "" @@ -918,10 +1109,13 @@ role = "" [ui.common] add = "" +all = "" admin_only = "" assign = "" back = "" cancel = "" +change_file = "" +clear_search = "" close = "" collapse = "" confirm = "" @@ -930,6 +1124,9 @@ create = "" delete = "" details = "" edit = "" +export = "" +fail = "" +go_home = "" view = "" hyphen = "" manage = "" @@ -945,17 +1142,18 @@ reset = "" read_only = "" refresh = "" remove = "" -requesting = "" resend = "" retry = "" save = "" search = "" select = "" +select_file = "" select_placeholder = "" show_more = "" language = "" language_ko = "" language_en = "" +success = "" theme_dark = "" theme_light = "" theme_toggle = "" @@ -966,10 +1164,6 @@ admin_only = "" command_only = "" system = "" -[ui.common.role] -admin = "" -user = "" - [ui.common.status] active = "" blocked = "" @@ -992,7 +1186,6 @@ env_badge = "" scope_badge = "" [ui.dev.nav] -audit_logs = "" clients = "" logout = "" @@ -1040,10 +1233,8 @@ type_label = "" export_csv = "" revoke = "" revoked_at = "" -scope_all = "" scope_label = "" search_placeholder = "" -status_all = "" status_label = "" status_revoked = "" subject = "" @@ -1051,7 +1242,6 @@ title = "" [ui.dev.clients.consents.breadcrumb] clients = "" -current = "" home = "" [ui.dev.clients.consents.filters] @@ -1062,13 +1252,6 @@ active_grants = "" avg_scopes = "" total_scopes = "" -[ui.dev.clients.stats] -total = "" -active_sessions = "" -auth_failures = "" -realtime = "" -stable = "" - [ui.dev.clients.consents.table] action = "" first_granted = "" @@ -1080,10 +1263,6 @@ user = "" [ui.dev.clients.details] -[ui.dev.clients.details.breadcrumb] -current = "" -section = "" - [ui.dev.clients.details.credentials] client_id = "" client_secret = "" @@ -1124,9 +1303,6 @@ title = "" add_title = "" add_btn = "" -[ui.dev.clients.general.breadcrumb] -section = "" - [ui.dev.clients.general.identity] description = "" description_placeholder = "" @@ -1441,151 +1617,3 @@ verify = "" [ui.userfront.signup.success] action = "" - - -# Auto-added missing keys - -[domain.tenant_type] -company = "" -company_group = "" -personal = "" -user_group = "" - -[msg.admin.groups.list] -create_error = "" -create_success = "" -delete_confirm = "" -delete_error = "" -delete_success = "" -empty = "" -loading = "" - -[msg.admin.groups.members] -add_success = "" -remove_confirm = "" -remove_success = "" - -[msg.admin.groups.roles] -assign_success = "" -description = "" -empty = "" -remove_confirm = "" -remove_success = "" - -[msg.admin.tenants.admins] -add_success = "" -empty = "" -remove_confirm = "" -remove_success = "" -subtitle = "" - -[msg.admin.tenants.owners] -add_success = "" -empty = "" -remove_confirm = "" -remove_success = "" -subtitle = "" - -[msg.admin.tenants] -approve_confirm = "" -approve_success = "" -delete_success = "" -missing_id = "" - -[msg.common] -error = "" -no_description = "" - -[ui.admin.groups] -add_unit = "" - -[ui.admin.groups.create] -description = "" - -[ui.admin.groups.detail] -breadcrumb_org = "" -breadcrumb_tenant = "" -breadcrumb_unit = "" -members_subtitle = "" -members_title = "" -permissions_subtitle = "" -permissions_title = "" - -[ui.admin.groups.form] -parent_label = "" -parent_none = "" -unit_level_label = "" -unit_level_placeholder = "" - -[ui.admin.tenants.admins] -add_button = "" -already_admin = "" -dialog_description = "" -dialog_no_results = "" -dialog_search_hint = "" -dialog_search_placeholder = "" -dialog_title = "" -remove_title = "" -table_actions = "" -table_email = "" -table_name = "" -title = "" - -[ui.admin.tenants.owners] -add_button = "" -already_owner = "" -dialog_description = "" -dialog_title = "" -remove_title = "" -table_actions = "" -table_email = "" -table_name = "" -title = "" - -[ui.admin.tenants.create.form] -parent = "" -type = "" - -[ui.admin.tenants.detail] -breadcrumb_list = "" -header_subtitle = "" -loading = "" -tab_federation = "" -tab_organization = "" -tab_permissions = "" -tab_profile = "" -tab_schema = "" -title = "" - -[ui.admin.tenants.list] -select_placeholder = "" - -[ui.admin.tenants.profile] -allowed_domains = "" -allowed_domains_help = "" -approve_button = "" -description = "" -name = "" -slug = "" -status = "" -subtitle = "" -title = "" -type = "" - -[ui.admin.tenants.table] -type = "" - -[ui.admin.users.create.form] -job_title = "" -job_title_placeholder = "" -position = "" -position_placeholder = "" - -[ui.admin.users.detail.form] -job_title = "" -job_title_placeholder = "" -position = "" -position_placeholder = "" - -[ui.admin.users.list.table] -position_job = ""