This commit is contained in:
2026-07-10 16:41:22 +09:00
parent bbda38a013
commit 50d75fcfcd
47 changed files with 6309 additions and 350 deletions
+39 -2
View File
@@ -545,6 +545,45 @@ export const ui_locales = {
B03_File_Upload_Success: ["입력 파일 업로드를 완료했습니다.", "Input files uploaded."],
B03_File_Upload_Failed: ["파일 업로드에 실패했습니다.", "File upload failed."],
B03_File_Result_Path: ["저장 경로", "Stored path"],
B03_File_Group_Required: ["필수 파일", "Required files"],
B03_File_Group_Optional: ["선택 파일", "Optional files"],
B03_File_Slot_PointCloud: ["포인트클라우드", "Point Cloud"],
B03_File_Slot_Projection: ["좌표계 정의", "Projection"],
B03_File_Slot_RasterCoord: ["래스터 좌표", "Raster Coord"],
B03_File_Slot_TerrainDem: ["지형 래스터", "Terrain DEM"],
B03_File_Slot_CadDrawing: ["CAD 도면", "CAD Drawing"],
B03_File_Card_Select: ["파일 선택", "Select file"],
B03_File_Card_Remove: ["파일 제거", "Remove file"],
B03_File_Error_DuplicateSlot: [
"같은 유형의 파일이 이미 선택되어 있습니다.",
"A file for this slot is already selected.",
],
B03_File_Error_RequiredSlots: [
"필수 파일(LAS/LAZ, PRJ, TFW)을 모두 선택하세요.",
"Select all required files: LAS/LAZ, PRJ, and TFW.",
],
B03_File_Error_SlotType: [
"선택한 파일 유형이 이 카드와 맞지 않습니다.",
"The selected file type does not match this card.",
],
B03_File_Progress_Bytes: ["진행", "Progress"],
B03_File_Progress_Speed: ["속도", "Speed"],
B03_File_Progress_Eta: ["예상 완료", "ETA"],
B03_File_Status_Pending: ["대기", "Pending"],
B03_File_Status_Uploading: ["업로드 중", "Uploading"],
B03_File_Status_Completed: ["완료", "Completed"],
B03_File_Status_Failed: ["실패", "Failed"],
B03_File_Status_Detected: ["중단된 업로드 감지", "Paused upload detected"],
B03_File_Resume_Button: ["업로드 재개", "Resume upload"],
B03_File_New_Button: ["새 파일로 시작", "Start new file"],
B03_File_ServiceWorker_Ready: [
"백그라운드 업로드 준비가 완료되었습니다.",
"Background upload is ready.",
],
B03_File_ServiceWorker_Unavailable: [
"현재 브라우저에서는 백그라운드 업로드를 사용할 수 없습니다.",
"Background upload is unavailable in this browser.",
],
/* --- B04_wf1_Surface 지표면 모델 분석 --- */
B04_Surface_Title: ["1차 · 지표면 모델 분석", "Step 1 · Surface Analysis"],
@@ -697,8 +736,6 @@ export const ui_locales = {
"시스템 관리자로 변경할 수 없습니다.",
"Cannot change role to System Admin.",
],
B01_Dashboard_AutomationLogic: ["자동화 설계 로직", "Automation Logic"],
B01_Dashboard_ChangeRole: ["역할 변경", "Change Role"],
} as const satisfies Record<string, LocaleEntry>;
export type LocaleKey = keyof typeof ui_locales;