- 일위대가 줄 아래 도면 줄 s:drawing — 칸 글은 SheetOptions.drawingLabel(colId) · 없거나 빈 글이면 「없음」 · 읽기만
- 줄 차례(navRows) · MASTER_ROWS · KEY_UNIT 를 ops 로 옮김(Node 시험 가능)
- 칸을 고르면 SheetOptions.onSelect({ row, col, colId }) — 누르기 · 방향키 · 머리 칸
- 시험 test_sheet_drawing_select.py
Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019Kyw9qnkJ94pC1A4PfpDtA
40 lines
1.6 KiB
TypeScript
40 lines
1.6 KiB
TypeScript
/* =============================================================================
|
|
* ui_template_sheet_text.ts
|
|
* 표 부품 글자 — [한국어, 영어]
|
|
* ========================================================================== */
|
|
|
|
import { currentLanguageIndex } from "@ui/ui_template_locale";
|
|
|
|
const TEXT = {
|
|
Row_Add: ["줄 더하기", "Add row"],
|
|
Row_Delete: ["줄 지우기", "Delete row"],
|
|
Col_Add: ["열 더하기", "Add column"],
|
|
Col_Delete: ["열 지우기", "Delete column"],
|
|
Col_Hand: ["손 입력 열", "Manual column"],
|
|
Col_New: ["새 열", "New column"],
|
|
Row_Unit: ["단위", "Unit"],
|
|
Row_Formula: ["식", "Formula"],
|
|
Row_Desc: ["들어갈 것", "Source"],
|
|
Row_Unit_Price: ["일위대가", "Unit price"],
|
|
Row_Drawing: ["도면", "Drawing"],
|
|
Drawing_None: ["없음", "None"],
|
|
Kind_Bound: ["설계값", "Design"],
|
|
Kind_Calc: ["계산", "Calc"],
|
|
Kind_Hand: ["손 입력", "Manual"],
|
|
Kind_Spread: ["값마다 열", "Per value"],
|
|
Page: ["쪽", "page"],
|
|
Head_Hint: [
|
|
"/ 로 이으면 층으로 나뉨 (예 관공/Φ800/관매설) · 적게 쓰면 남은 층은 위 칸과 합침",
|
|
"Use / to split into layers (e.g. A/B/C) · fewer parts merge the rest with the cell above",
|
|
],
|
|
Error: ["#오류", "#ERR"],
|
|
Hint: [
|
|
"칸을 누르고 바로 치거나 Enter · F2 로 고침 · = 로 시작하면 그 칸만 식 · 화살표 · Tab 으로 옮김 · Delete 로 비움",
|
|
"Type or press Enter / F2 to edit · start with = for a cell formula · arrows / Tab to move · Delete to clear",
|
|
],
|
|
} as const;
|
|
|
|
export function st(key: keyof typeof TEXT): string {
|
|
return TEXT[key][currentLanguageIndex] ?? TEXT[key][0];
|
|
}
|