summaryrefslogtreecommitdiff
path: root/lib/swp/table/swp-upload-result-dialog.tsx
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-11-27 17:48:28 +0900
committerjoonhoekim <26rote@gmail.com>2025-11-27 17:48:28 +0900
commit95984e67b8d57fbe1431fcfedf3bb682f28416b3 (patch)
tree79953157e70b30c3c65ae52a01adb65fd4344bee /lib/swp/table/swp-upload-result-dialog.tsx
parent647e2e487238aed36ff9a880648e5c3e8725160f (diff)
(김준회) swp 영문 처리
Diffstat (limited to 'lib/swp/table/swp-upload-result-dialog.tsx')
-rw-r--r--lib/swp/table/swp-upload-result-dialog.tsx14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/swp/table/swp-upload-result-dialog.tsx b/lib/swp/table/swp-upload-result-dialog.tsx
index 06caf66e..803d00f0 100644
--- a/lib/swp/table/swp-upload-result-dialog.tsx
+++ b/lib/swp/table/swp-upload-result-dialog.tsx
@@ -35,9 +35,9 @@ export function SwpUploadResultDialog({
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="max-w-3xl max-h-[80vh] flex flex-col">
<DialogHeader>
- <DialogTitle>파일 업로드 결과</DialogTitle>
+ <DialogTitle>File Upload Result</DialogTitle>
<DialogDescription>
- 총 {totalCount}개 파일 중 성공 {successCount}개, 실패 {failCount}개
+ Total {totalCount} files: {successCount} succeeded, {failCount} failed
</DialogDescription>
</DialogHeader>
@@ -70,16 +70,16 @@ export function SwpUploadResultDialog({
{result.success ? (
<p className="text-sm text-green-700 dark:text-green-300">
- 업로드 성공
+ Upload Successful
</p>
) : (
<div className="space-y-1">
<p className="text-sm font-medium text-red-700 dark:text-red-300">
- 업로드 실패
+ Upload Failed
</p>
{result.error && (
<p className="text-sm text-red-600 dark:text-red-400 break-words">
- 사유: {result.error}
+ Reason: {result.error}
</p>
)}
</div>
@@ -94,11 +94,11 @@ export function SwpUploadResultDialog({
<div className="text-sm text-muted-foreground">
{failCount > 0 && (
<span className="text-red-600 dark:text-red-400 font-medium">
- 실패한 파일을 확인하고 다시 업로드해주세요.
+ Please check the failed files and try uploading again.
</span>
)}
</div>
- <Button onClick={() => onOpenChange(false)}>확인</Button>
+ <Button onClick={() => onOpenChange(false)}>Confirm</Button>
</div>
</DialogContent>
</Dialog>