From 95984e67b8d57fbe1431fcfedf3bb682f28416b3 Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Thu, 27 Nov 2025 17:48:28 +0900 Subject: (김준회) swp 영문 처리 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/swp/table/swp-revision-list-dialog.tsx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'lib/swp/table/swp-revision-list-dialog.tsx') diff --git a/lib/swp/table/swp-revision-list-dialog.tsx b/lib/swp/table/swp-revision-list-dialog.tsx index 8924db81..66892469 100644 --- a/lib/swp/table/swp-revision-list-dialog.tsx +++ b/lib/swp/table/swp-revision-list-dialog.tsx @@ -55,7 +55,7 @@ export function SwpRevisionListDialog({ - 문서 상세 + Document Detail {document && ( {document.DOC_NO} - {document.DOC_TITLE} @@ -68,25 +68,25 @@ export function SwpRevisionListDialog({ {/* 문서 정보 */}
- 프로젝트: + Project:
{document.PROJ_NO}
{document.PROJ_NM && (
{document.PROJ_NM}
)}
- 패키지: + Package:
{document.PKG_NO || "-"}
- 업체: + Company:
{document.CPY_NM || "-"}
{document.VNDR_CD && (
{document.VNDR_CD}
)}
- 마지막 리비전 넘버: + Last Revision Number:
{document.LTST_REV_NO || "-"}
@@ -95,7 +95,7 @@ export function SwpRevisionListDialog({ {loadingRevisions ? (
- 리비전 로딩 중... + Loading revisions...
) : revisions.length ? ( ) : (
- 리비전 없음 + No revisions
)} @@ -178,11 +178,11 @@ function DocumentDetailView({ size="sm" onClick={handleExpandAll} > - {allExpanded ? "모두 접기" : "모두 펼치기"} + {allExpanded ? "Collapse All" : "Expand All"} - {/* 리비전 테이블 */} + {/* Revision Table */}
@@ -204,7 +204,7 @@ function DocumentDetailView({ {revisionTable.getRowModel().rows.map((row) => ( - {/* 리비전 행 */} + {/* Revision Row */} {row.getVisibleCells().map((cell) => ( @@ -230,20 +230,20 @@ function DocumentDetailView({ ))} - {/* 파일 행들 (확장 시) */} + {/* File Rows (when expanded) */} {row.getIsExpanded() && ( {loadingFiles.has(row.original.id) ? (
- 파일 로딩 중... + Loading files...
) : fileData[row.original.id]?.length ? ( ) : (
- 파일 없음 + No files
)}
@@ -259,7 +259,7 @@ function DocumentDetailView({ } // ============================================================================ -// 파일 서브 테이블 +// File Sub Table // ============================================================================ interface FileSubTableProps { -- cgit v1.2.3