Files
Aislo/ui_template/ui_template_locale.ts
T
eomsangdonandClaude Opus 5 cb33e81d98 feat(b09): 원가계산서(일반형식)·제비율 요율표 탭 파일 — STmate 배치 · 값은 우리 엔진
- 서버: /estimation/cost-sheet(GET·PUT) · /estimation/rate-table — 새 라우터 파일
- 직접비 = 설계내역서 합계 · 기준 입력 = estimation.cost_sheet · 폐기물처리비 = 임목폐기물 톤 × 수동 단가
- 서식 줄: 나.순공사원가 … 바.총공사비 (DFM TWM_KANJUB 차례·표기) · 경비 세목 번호 차례
- 기준 입력판: 형식(일반만) · 2.공사의종류 · 3.공사기간 · 6.관/사급 · 7.산업안전 · 8.환경보전 · 9.건설기계 — 선택지는 요율 데이터에서
- 요율표: 첫 탭 묶음 10개(보기 전용 · 수정은 잠김)
- 탭 계약 파일은 서브 314c0040 과 같은 내용(blob 동일) · 사전은 새 벌 b4
- 시험: 서식 차례·엔진 값 일치·폐기물 자리·저장값 거름·구간 표기

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BW6Jdsh18WPtYUR6THZJqn
2026-09-14 01:32:30 +09:00

62 lines
2.6 KiB
TypeScript

/* =============================================================================
* ui_template_locale.ts
* 다국어 텍스트 배열 방식 관리 파일 (i18n) — 사전 합성 및 조회 헬퍼
*
* 규칙 (frontend.md §3):
* - 모든 UI 문자열은 사전 파일에 [한국어, 영어] 배열로 선(先) 등록.
* - 컴포넌트에서는 ui_locales.키값[currentLanguageIndex] 형태로만 참조.
* - 텍스트 하드코딩 절대 금지.
* - 신규 문구는 해당 사전 파일의 해당 섹션 최하단에 추가.
*
* 사전 파일 분할 (700줄 제약):
* - ui_template_locale_common.ts : 공통 (액션/상태/폼/네비게이션/워크플로우/앱 셸)
* - ui_template_locale_a.ts : A 그룹 (로그인 전 A01~A09)
* - ui_template_locale_b1.ts : B 그룹 전반부 (B01~B04)
* - ui_template_locale_b2.ts : B 그룹 후반부 (B05~B11)
*
* 이 파일의 export 시그니처는 분할 이전과 동일하므로 소비처 import 수정은 불필요하다.
* ========================================================================== */
// b4 = B09 원가계산서·제비율(랩탑 메인 벌). 다른 벌과 줄이 겹치지 않게 맨 앞에 둠.
import { ui_locales_b4 } from "./ui_template_locale_b4";
import { ui_locales_common } from "./ui_template_locale_common";
import { ui_locales_a } from "./ui_template_locale_a";
import { ui_locales_b1 } from "./ui_template_locale_b1";
import { ui_locales_b2 } from "./ui_template_locale_b2";
/** 지원 언어 인덱스: 0 = 한국어, 1 = 영어 */
export const LANGUAGES = ["ko", "en"] as const;
export type LanguageCode = (typeof LANGUAGES)[number];
/** 현재 언어 인덱스 (기본: 한국어). 언어 전환 시 이 값을 갱신. */
export let currentLanguageIndex = 0;
/** 언어 전환 헬퍼. code가 유효하면 인덱스 갱신 후 반환. */
export function setLanguage(code: LanguageCode): number {
const idx = LANGUAGES.indexOf(code);
if (idx >= 0) {
currentLanguageIndex = idx;
}
return currentLanguageIndex;
}
/** 현재 언어에 맞는 문자열 반환. 키 누락 시 키 자체를 반환(개발 중 탐지용). */
export function t(key: keyof typeof ui_locales): string {
const entry = ui_locales[key];
if (!entry) {
return String(key);
}
return entry[currentLanguageIndex] ?? entry[0];
}
/** 분할된 사전 4종을 합성한 단일 사전. 키는 파일 간 중복되지 않는다. */
export const ui_locales = {
...ui_locales_b4,
...ui_locales_common,
...ui_locales_a,
...ui_locales_b1,
...ui_locales_b2,
} as const;
export type LocaleKey = keyof typeof ui_locales;