@things-factory/figure-ui 10.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/bootstrap.ts +16 -0
- package/client/graphql/index.ts +209 -0
- package/client/index.ts +2 -0
- package/client/modeller/figure-ask.ts +247 -0
- package/client/modeller/figure-canvas.ts +482 -0
- package/client/modeller/figure-inspector.ts +1054 -0
- package/client/modeller/figure-parts.ts +479 -0
- package/client/modeller/figure-preview.ts +381 -0
- package/client/modeller/figure-report.ts +895 -0
- package/client/modeller/figure-settings.ts +285 -0
- package/client/modeller/figure-side.ts +162 -0
- package/client/modeller/figure-source.test.ts +336 -0
- package/client/modeller/figure-source.ts +338 -0
- package/client/modeller/figure-view.ts +79 -0
- package/client/modeller/maturity.ts +288 -0
- package/client/modeller/part-edits.test.ts +252 -0
- package/client/modeller/part-edits.ts +246 -0
- package/client/modeller/proposal.ts +142 -0
- package/client/modeller/scene-budget.ts +102 -0
- package/client/pages/figure-list-page.ts +274 -0
- package/client/pages/figure-modeller-page.ts +1067 -0
- package/client/route.ts +11 -0
- package/client/themes/brand.css +51 -0
- package/client/themes/dark.css +64 -0
- package/client/themes/light.css +95 -0
- package/client/tsconfig.json +19 -0
- package/client/types.ts +96 -0
- package/client/viewparts/figure-card.ts +226 -0
- package/dist-client/bootstrap.d.ts +14 -0
- package/dist-client/bootstrap.js +17 -0
- package/dist-client/bootstrap.js.map +1 -0
- package/dist-client/graphql/index.d.ts +41 -0
- package/dist-client/graphql/index.js +173 -0
- package/dist-client/graphql/index.js.map +1 -0
- package/dist-client/index.d.ts +2 -0
- package/dist-client/index.js +3 -0
- package/dist-client/index.js.map +1 -0
- package/dist-client/modeller/figure-ask.d.ts +36 -0
- package/dist-client/modeller/figure-ask.js +256 -0
- package/dist-client/modeller/figure-ask.js.map +1 -0
- package/dist-client/modeller/figure-canvas.d.ts +128 -0
- package/dist-client/modeller/figure-canvas.js +431 -0
- package/dist-client/modeller/figure-canvas.js.map +1 -0
- package/dist-client/modeller/figure-inspector.d.ts +149 -0
- package/dist-client/modeller/figure-inspector.js +991 -0
- package/dist-client/modeller/figure-inspector.js.map +1 -0
- package/dist-client/modeller/figure-parts.d.ts +64 -0
- package/dist-client/modeller/figure-parts.js +478 -0
- package/dist-client/modeller/figure-parts.js.map +1 -0
- package/dist-client/modeller/figure-preview.d.ts +62 -0
- package/dist-client/modeller/figure-preview.js +360 -0
- package/dist-client/modeller/figure-preview.js.map +1 -0
- package/dist-client/modeller/figure-report.d.ts +134 -0
- package/dist-client/modeller/figure-report.js +881 -0
- package/dist-client/modeller/figure-report.js.map +1 -0
- package/dist-client/modeller/figure-settings.d.ts +39 -0
- package/dist-client/modeller/figure-settings.js +277 -0
- package/dist-client/modeller/figure-settings.js.map +1 -0
- package/dist-client/modeller/figure-side.d.ts +41 -0
- package/dist-client/modeller/figure-side.js +175 -0
- package/dist-client/modeller/figure-side.js.map +1 -0
- package/dist-client/modeller/figure-source.d.ts +196 -0
- package/dist-client/modeller/figure-source.js +153 -0
- package/dist-client/modeller/figure-source.js.map +1 -0
- package/dist-client/modeller/figure-view.d.ts +57 -0
- package/dist-client/modeller/figure-view.js +36 -0
- package/dist-client/modeller/figure-view.js.map +1 -0
- package/dist-client/modeller/maturity.d.ts +55 -0
- package/dist-client/modeller/maturity.js +212 -0
- package/dist-client/modeller/maturity.js.map +1 -0
- package/dist-client/modeller/part-edits.d.ts +64 -0
- package/dist-client/modeller/part-edits.js +218 -0
- package/dist-client/modeller/part-edits.js.map +1 -0
- package/dist-client/modeller/proposal.d.ts +45 -0
- package/dist-client/modeller/proposal.js +96 -0
- package/dist-client/modeller/proposal.js.map +1 -0
- package/dist-client/modeller/scene-budget.d.ts +78 -0
- package/dist-client/modeller/scene-budget.js +80 -0
- package/dist-client/modeller/scene-budget.js.map +1 -0
- package/dist-client/pages/figure-list-page.d.ts +40 -0
- package/dist-client/pages/figure-list-page.js +280 -0
- package/dist-client/pages/figure-list-page.js.map +1 -0
- package/dist-client/pages/figure-modeller-page.d.ts +219 -0
- package/dist-client/pages/figure-modeller-page.js +1045 -0
- package/dist-client/pages/figure-modeller-page.js.map +1 -0
- package/dist-client/route.d.ts +1 -0
- package/dist-client/route.js +11 -0
- package/dist-client/route.js.map +1 -0
- package/dist-client/themes/brand.css +51 -0
- package/dist-client/themes/dark.css +64 -0
- package/dist-client/themes/light.css +95 -0
- package/dist-client/types.d.ts +93 -0
- package/dist-client/types.js +2 -0
- package/dist-client/types.js.map +1 -0
- package/dist-client/viewparts/figure-card.d.ts +24 -0
- package/dist-client/viewparts/figure-card.js +221 -0
- package/dist-client/viewparts/figure-card.js.map +1 -0
- package/dist-server/index.d.ts +7 -0
- package/dist-server/index.js +3 -0
- package/dist-server/index.js.map +1 -0
- package/package.json +41 -0
- package/server/index.ts +7 -0
- package/server/tsconfig.json +18 -0
- package/test/brand-palette.test.ts +188 -0
- package/test/heading-scale-guard.test.ts +144 -0
- package/test/resolve-ts-siblings.mjs +67 -0
- package/things-factory.config.js +11 -0
- package/translations/en.json +247 -0
- package/translations/ja.json +247 -0
- package/translations/ko.json +247 -0
- package/translations/ms.json +247 -0
- package/translations/zh.json +247 -0
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
{
|
|
2
|
+
"button.ask": "요청",
|
|
3
|
+
"button.attach-a-picture": "이미지",
|
|
4
|
+
"button.center-x": "X 가운데",
|
|
5
|
+
"button.center-z": "Z 가운데",
|
|
6
|
+
"button.clear-filters": "조건 지우기",
|
|
7
|
+
"button.close": "닫기",
|
|
8
|
+
"button.delete": "삭제",
|
|
9
|
+
"button.discard": "취소",
|
|
10
|
+
"button.duplicate-part": "복제",
|
|
11
|
+
"button.mirror-x": "X 대칭",
|
|
12
|
+
"button.mirror-z": "Z 대칭",
|
|
13
|
+
"button.move-part-down": "아래로",
|
|
14
|
+
"button.move-part-up": "위로",
|
|
15
|
+
"button.new-figure": "새 Figure",
|
|
16
|
+
"button.remove-part": "삭제",
|
|
17
|
+
"button.reset-view": "처음으로",
|
|
18
|
+
"button.save": "저장",
|
|
19
|
+
"button.see-the-trend-chart": "추이 그래프 보기",
|
|
20
|
+
"button.snap": "눈금에",
|
|
21
|
+
"button.take-it": "적용",
|
|
22
|
+
"button.take-n-changes": "{n}개 적용",
|
|
23
|
+
"button.to-floor": "바닥에",
|
|
24
|
+
"label.all": "전체",
|
|
25
|
+
"label.axis-consistency": "표현 일관성",
|
|
26
|
+
"label.axis-consistency-short": "일관성",
|
|
27
|
+
"label.axis-depth": "높이",
|
|
28
|
+
"label.axis-detail": "등급 충실도",
|
|
29
|
+
"label.axis-detail-short": "충실도",
|
|
30
|
+
"label.axis-height": "세로",
|
|
31
|
+
"label.axis-labels": "축 이름표",
|
|
32
|
+
"label.axis-reactive": "상태 표현",
|
|
33
|
+
"label.axis-reactive-short": "상태",
|
|
34
|
+
"label.axis-readable": "식별성",
|
|
35
|
+
"label.axis-readable-short": "식별성",
|
|
36
|
+
"label.axis-reuse": "형상 재사용",
|
|
37
|
+
"label.axis-reuse-short": "재사용",
|
|
38
|
+
"label.axis-scale": "배치 규모",
|
|
39
|
+
"label.axis-scale-short": "규모",
|
|
40
|
+
"label.axis-width": "가로",
|
|
41
|
+
"label.budget-animations": "애니메이션 지점",
|
|
42
|
+
"label.budget-groups": "재질 그룹",
|
|
43
|
+
"label.budget-parts": "부품 수",
|
|
44
|
+
"label.budget-surface": "팔레트 외 표면",
|
|
45
|
+
"label.budget-transparent": "투명 재질",
|
|
46
|
+
"label.budgets": "한도",
|
|
47
|
+
"label.by-axis": "축별 성숙도",
|
|
48
|
+
"label.cast-shadow": "그림자 드리우기",
|
|
49
|
+
"label.coordinate-ground": "좌표 바탕",
|
|
50
|
+
"label.corner-round": "모서리 굴림",
|
|
51
|
+
"label.detail-L": "상세",
|
|
52
|
+
"label.detail-M": "보통",
|
|
53
|
+
"label.detail-S": "단순",
|
|
54
|
+
"label.detail-level": "디테일 등급",
|
|
55
|
+
"label.distinct-materials": "서로 다른 재질",
|
|
56
|
+
"label.distinct-shapes": "서로 다른 형상",
|
|
57
|
+
"label.draft": "작성 중",
|
|
58
|
+
"label.draw-calls-at-100": "100개 기준 draw call",
|
|
59
|
+
"label.draw-calls-at-10k": "1만개 기준 draw call",
|
|
60
|
+
"label.emissive": "자체발광",
|
|
61
|
+
"label.emissive-color": "켜진 색",
|
|
62
|
+
"label.environment": "환경",
|
|
63
|
+
"label.environment-cloudy": "흐림",
|
|
64
|
+
"label.environment-factory": "공장",
|
|
65
|
+
"label.environment-home": "실내",
|
|
66
|
+
"label.environment-office": "사무실",
|
|
67
|
+
"label.environment-rainy": "비",
|
|
68
|
+
"label.environment-studio": "스튜디오",
|
|
69
|
+
"label.environment-sunny": "맑음",
|
|
70
|
+
"label.environment-warehouse": "창고",
|
|
71
|
+
"label.findings": "확인할 점",
|
|
72
|
+
"label.flat-shading": "각진 면",
|
|
73
|
+
"label.floor": "바닥",
|
|
74
|
+
"label.follow-camera": "카메라 따라가기",
|
|
75
|
+
"label.guides": "안내선",
|
|
76
|
+
"label.hemisphere-light": "헤미스피어 라이트",
|
|
77
|
+
"label.hollow-floor": "바닥 두께",
|
|
78
|
+
"label.hollow-wall": "벽 두께",
|
|
79
|
+
"label.intensity": "세기",
|
|
80
|
+
"label.keep-round": "단면 유지",
|
|
81
|
+
"label.key-light": "키 라이트",
|
|
82
|
+
"label.material": "재질",
|
|
83
|
+
"label.maturity": "성숙도",
|
|
84
|
+
"label.mode-edit": "편집",
|
|
85
|
+
"label.mode-preview": "미리보기",
|
|
86
|
+
"label.name": "이름",
|
|
87
|
+
"label.no-color-chosen": "색 미지정",
|
|
88
|
+
"label.none": "없음",
|
|
89
|
+
"label.now": "현재",
|
|
90
|
+
"label.on-by-default": "기본으로 켜 둔다",
|
|
91
|
+
"label.palette-token": "팔레트 토큰",
|
|
92
|
+
"label.part": "부품",
|
|
93
|
+
"label.parts": "부품",
|
|
94
|
+
"label.placement": "위치와 크기",
|
|
95
|
+
"label.position": "위치 (중심)",
|
|
96
|
+
"label.preset": "프리셋",
|
|
97
|
+
"label.preset-ceramic": "도자",
|
|
98
|
+
"label.preset-default": "기본",
|
|
99
|
+
"label.preset-glass": "유리",
|
|
100
|
+
"label.preset-metal": "금속",
|
|
101
|
+
"label.preset-plastic": "플라스틱",
|
|
102
|
+
"label.preset-rubber": "고무",
|
|
103
|
+
"label.preset-wood": "나무",
|
|
104
|
+
"label.primitive-cube": "상자",
|
|
105
|
+
"label.primitive-cylinder": "원기둥",
|
|
106
|
+
"label.primitive-polygon": "다각 단면",
|
|
107
|
+
"label.primitive-rect": "사각 단면",
|
|
108
|
+
"label.primitive-sphere": "구",
|
|
109
|
+
"label.primitive-wall": "벽",
|
|
110
|
+
"label.properties": "속성",
|
|
111
|
+
"label.proposed": "제안",
|
|
112
|
+
"label.released": "배포됨",
|
|
113
|
+
"label.repeat-axis": "늘어나는 축",
|
|
114
|
+
"label.repeat-pitch": "한 칸 (피치)",
|
|
115
|
+
"label.reuse-trend": "재사용 추이",
|
|
116
|
+
"label.rotation-degrees": "회전 (도)",
|
|
117
|
+
"label.same-as-off": "꺼진 색과 같게",
|
|
118
|
+
"label.segments": "분할 수",
|
|
119
|
+
"label.shape": "도형",
|
|
120
|
+
"label.shape-detail": "형상 세부",
|
|
121
|
+
"label.shapes": "도형",
|
|
122
|
+
"label.size": "크기",
|
|
123
|
+
"label.sizing-fixed": "크기 고정",
|
|
124
|
+
"label.sizing-repeat": "개수 증가",
|
|
125
|
+
"label.sizing-rule": "크기 변경 시 동작",
|
|
126
|
+
"label.sizing-scale": "비례 확대",
|
|
127
|
+
"label.sizing-stretch": "한 축만 늘임",
|
|
128
|
+
"label.sky-color": "배경색",
|
|
129
|
+
"label.status-colors": "켜진 색 (램프 · 표시등)",
|
|
130
|
+
"label.tools": "맞추기",
|
|
131
|
+
"label.transparent": "투명",
|
|
132
|
+
"label.triangles": "삼각형",
|
|
133
|
+
"label.triangles-at-100": "100개 기준 삼각형",
|
|
134
|
+
"label.triangles-at-10k": "1만개 기준 삼각형",
|
|
135
|
+
"label.view": "설정",
|
|
136
|
+
"label.weight": "무게",
|
|
137
|
+
"text.add-a-shape": "클릭하면 부품이 추가됩니다",
|
|
138
|
+
"text.all-lights-off": "빛이 둘 다 꺼져 있습니다. 스스로 빛나는 면만 보이고 나머지는 까맣게 나옵니다 — 램프가 켜졌는지 확인할 때 쓰는 상태입니다.",
|
|
139
|
+
"text.ask-create-example": "예: 3단 선반형 컨베이어 소터",
|
|
140
|
+
"text.ask-revise-example": "예: 재질 묶음을 2개로 줄여줘",
|
|
141
|
+
"text.ask-to-create": "신규",
|
|
142
|
+
"text.ask-to-revise": "수정",
|
|
143
|
+
"text.asking": "만드는 중…",
|
|
144
|
+
"text.assistant-proposed-a-figure": "제안을 만들었습니다. 오른쪽이 제안한 결과입니다.",
|
|
145
|
+
"text.axes-not-measurable-yet": "아직 못 재는 축은 그림에 넣지 않았습니다 — {axes}. 이유는 아래에 있습니다.",
|
|
146
|
+
"text.bound-by-drawCalls": "draw call 이 먼저 한계에 닿습니다 — 1개당 {per}, 한 도면 {budget} 기준.",
|
|
147
|
+
"text.bound-by-triangles": "삼각형이 먼저 한계에 닿습니다 — 1개당 {per}, 한 도면 {budget} 기준.",
|
|
148
|
+
"text.budget-not-measured-yet": "아직 실측 전 목표치입니다.",
|
|
149
|
+
"text.canvas-appears-once-a-part-exists": "부품이 하나라도 있으면 편집 캔버스가 나옵니다.",
|
|
150
|
+
"text.center-on-x": "기준 상자의 X 가운데로 옮깁니다.",
|
|
151
|
+
"text.center-on-z": "기준 상자의 Z 가운데로 옮깁니다.",
|
|
152
|
+
"text.change-added": "새 부품",
|
|
153
|
+
"text.change-anchor": "기준점",
|
|
154
|
+
"text.change-base": "기준 치수",
|
|
155
|
+
"text.change-changed": "바뀐 부품",
|
|
156
|
+
"text.change-detail": "디테일 등급",
|
|
157
|
+
"text.change-removed": "삭제되는 부품",
|
|
158
|
+
"text.change-styleKit": "스타일 킷",
|
|
159
|
+
"text.collapse-parts-pane": "부품 목록 접기",
|
|
160
|
+
"text.collapse-properties-pane": "속성 칸 접기",
|
|
161
|
+
"text.coordinate-ground-explained": "원점과 눈금을 바닥에 그린다",
|
|
162
|
+
"text.delete-figure-confirm": "{name} 을 삭제하시겠습니까? 이 타입을 쓰고 있는 보드는 더 이상 찾지 못합니다.",
|
|
163
|
+
"text.detail-level-explained": "이 형상을 얼마나 상세하게 만들 것인지 밝히는 값입니다. S 단순은 표지나 기둥처럼 형태가 단순한 것, M 보통은 대부분의 설비, L 상세는 화면의 주역이 되는 큰 설비에 씁니다. 밝힌 등급이 부품 수 한도를 정하고, 성숙도가 그 등급에 걸맞게 만들어졌는지 봅니다.",
|
|
164
|
+
"text.editing-tools-come-next": "도형 팔레트와 부품 편집기는 아직 없습니다. 현재는 열어서 확인하고 저장할 수 있습니다.",
|
|
165
|
+
"text.emissive-explained": "이 면이 스스로 밝아집니다. 0 이면 램프가 아닙니다. 주변을 물들이지는 않습니다.",
|
|
166
|
+
"text.environment-explained": "금속 재질이 무엇을 비출지 정한다. 형상에는 영향이 없다.",
|
|
167
|
+
"text.expand-parts-pane": "부품 목록 펼치기",
|
|
168
|
+
"text.expand-properties-pane": "속성 칸 펼치기",
|
|
169
|
+
"text.figure-count": "{count}개",
|
|
170
|
+
"text.figure-display-name": "표시 이름",
|
|
171
|
+
"text.fits-n-instances": "{n}개까지",
|
|
172
|
+
"text.floor-explained": "좌표 바탕과 겹치므로 보통 끈다",
|
|
173
|
+
"text.follow-camera-explained": "끄면 그림자 방향이 고정된다",
|
|
174
|
+
"text.grade-decided-by": "등급 결정에 영향을 준 항목",
|
|
175
|
+
"text.grade-explained": "등급은 선언한 한도를 얼마나 썼는지로 정합니다. 한도에 가장 가까운 항목 하나로 봅니다. 여러 항목의 평균을 내면 꽉 찬 항목이 여유 있는 것들에 묻히기 때문입니다.",
|
|
176
|
+
"text.grade-scale-lead": "등급 눈금 (한도 사용률)",
|
|
177
|
+
"text.headroom-percent": "여유 {percent}%",
|
|
178
|
+
"text.hemisphere-light-explained": "하늘과 바닥에서 고루 드는 빛. 그늘진 면을 들어올린다.",
|
|
179
|
+
"text.hide-all-parts": "모두 감추기",
|
|
180
|
+
"text.hide-this-part": "이 부품을 잠깐 가립니다. 저장되지 않습니다",
|
|
181
|
+
"text.how-many-fit": "한 도면에 몇 개까지 놓아도 오버헤드가 적은가",
|
|
182
|
+
"text.instances-unit": "개",
|
|
183
|
+
"text.keep-round-cost": "draw call 1",
|
|
184
|
+
"text.keep-round-merged": "묶음에 합쳐짐",
|
|
185
|
+
"text.keep-round-off": "끔",
|
|
186
|
+
"text.keep-round-on": "원 유지",
|
|
187
|
+
"text.limit-comes-from-level": "이 한도는 디테일 등급이 정합니다.",
|
|
188
|
+
"text.maturity-blocked-needs-render": "화면에 그려 봐야 알 수 있는 값입니다. 톱뷰 실루엣 측정을 아직 구현하지 않았습니다.",
|
|
189
|
+
"text.maturity-blocked-no-binding": "상태 값을 부품에 연결하는 방법이 아직 형식에 없습니다. 렌더러도 이 값을 읽지 않습니다.",
|
|
190
|
+
"text.maturity-blocked-no-parts": "부품이 없어 측정할 것이 없습니다.",
|
|
191
|
+
"text.maturity-consistency-because": "텍스처 사용 여부, 권장 분할 수 준수, 재질 종류 수를 확인합니다. 도면에서 다른 자산과 어울리고 확대해도 흐려지지 않으려면 이 세 가지가 지켜져야 합니다.",
|
|
192
|
+
"text.maturity-consistency-clean": "문제 없음",
|
|
193
|
+
"text.maturity-consistency-faults": "어긋난 곳 있음",
|
|
194
|
+
"text.maturity-detail-because": "선언한 등급이 허용하는 부품 수 중 실제로 사용한 비율입니다. 등급을 높게 선언하고 부품을 거의 쓰지 않으면 그 등급으로 보기 어렵습니다.",
|
|
195
|
+
"text.maturity-readable-because": "위에서 내려다볼 때 색이 다른 구역이 몇 개로, 얼마나 고르게 보이는지입니다. 시점 엔트로피(Vázquez 등)를 면 대신 색 구역으로 계산했습니다 — 면으로 세면 분할 수만 올려도 점수가 올라갑니다.",
|
|
196
|
+
"text.maturity-reuse-because": "여러 부품이 같은 형상을 공유해 절약한 형상 수입니다. 낮아도 문제는 아닙니다 — 부품마다 형상이 다를 수 있습니다.",
|
|
197
|
+
"text.maturity-scale-because": "한 도면에 자산 500개를 배치하는 것을 기준으로 합니다.",
|
|
198
|
+
"text.mirror-explained": "반대쪽에 대칭으로 하나 더 만듭니다. 다리나 팔처럼 짝이 있는 부품에 씁니다.",
|
|
199
|
+
"text.mirror-would-overlap": "이미 가운데에 있어 대칭이 제자리입니다. 겹친 부품이 생깁니다.",
|
|
200
|
+
"text.mode-edit-explained": "부품을 놓고 고칩니다. 늘 기준 크기입니다.",
|
|
201
|
+
"text.mode-preview-explained": "보드에 놓았을 때의 모습입니다. 기준 크기와 늘린 것을 나란히 놓습니다.",
|
|
202
|
+
"text.n-of-limit": "{used} / {limit}",
|
|
203
|
+
"text.n-parts-at-most": "부품 {limit}개까지",
|
|
204
|
+
"text.n-triangles": "삼각형 {count}개",
|
|
205
|
+
"text.no-figure-matches-the-filter": "조건에 맞는 것이 없습니다",
|
|
206
|
+
"text.no-figure-yet": "아직 만든 Figure 가 없습니다",
|
|
207
|
+
"text.no-findings": "확인할 점이 없습니다.",
|
|
208
|
+
"text.not-measurable-yet": "측정 불가",
|
|
209
|
+
"text.not-measured-yet": "미측정",
|
|
210
|
+
"text.on-by-default-explained": "보드에 놓았을 때의 처음 상태입니다. 인스턴스가 켜고 끄면 그것이 이깁니다.",
|
|
211
|
+
"text.other-segment-count": "직접 입력",
|
|
212
|
+
"text.part-limit-reached": "디테일 등급이 허용하는 부품 수를 모두 사용했습니다. 등급을 올리거나 부품을 삭제하세요.",
|
|
213
|
+
"text.part-limit-reached-short": "{level} 등급은 부품 {limit}개까지입니다. 등급을 올리거나 부품을 삭제하세요.",
|
|
214
|
+
"text.pick-a-shape-above-to-start": "위에서 도형을 선택해 첫 부품을 추가하세요.",
|
|
215
|
+
"text.picked-changes-do-not-validate": "선택한 조합은 형식에 맞지 않습니다",
|
|
216
|
+
"text.picture-is-for-proportions": "비율과 형태를 참고합니다. 표면 무늬는 반영하지 않습니다.",
|
|
217
|
+
"text.preview-blocked-by-errors": "형식을 어겨서 세울 수 없습니다. 성숙도 탭에 사유가 있습니다.",
|
|
218
|
+
"text.preview-needs-a-part": "부품이 하나라도 있으면 여기에 보드에 놓인 모습이 나옵니다.",
|
|
219
|
+
"text.put-on-floor": "바닥(Z=0)에 붙입니다.",
|
|
220
|
+
"text.renaming-a-part-breaks-bindings": "이름은 저장되는 식별자입니다. 바꾸면 이미 배치된 인스턴스의 바인딩이 끊깁니다.",
|
|
221
|
+
"text.repeat-edits-the-unit": "화면에 여럿으로 보여도 저작하는 것은 하나입니다. 기즈모로 옮기면 줄 전체가 움직이고, 크기와 회전은 그 하나에만 걸립니다 — 한 칸은 따로 정하므로 배치는 그대로입니다. 사본 하나만 따로 고칠 수는 없습니다. 가운데를 비우거나 하나만 색을 달리하려면 그 부품을 따로 놓아야 합니다.",
|
|
222
|
+
"text.repeat-pitch-explained": "중심에서 다음 중심까지의 거리입니다. 부품 크기와 무관해서, 부품을 굵게 하거나 돌려도 배치가 그대로입니다.",
|
|
223
|
+
"text.report-appears-when-you-add-a-part": "부품이 하나라도 있으면 무게와 점수가 나옵니다.",
|
|
224
|
+
"text.reuse-score-explained": "정해진 한도에 얼마나 여유가 남았는지입니다. 한도에 가장 가까운 항목 하나가 점수를 정합니다.",
|
|
225
|
+
"text.saving": "저장 중",
|
|
226
|
+
"text.search-figure-by-name-or-type": "이름이나 타입으로 찾기",
|
|
227
|
+
"text.select-a-part-to-edit": "부품을 선택하면 여기에서 편집합니다.",
|
|
228
|
+
"text.show-all-parts": "모두 보이기",
|
|
229
|
+
"text.show-this-part": "가린 부품을 다시 보입니다",
|
|
230
|
+
"text.sizing-costs-one-draw-call": "비례 확대가 아닌 부품은 다른 부품과 합쳐 그릴 수 없어 draw call 을 하나 더 씁니다. 그만큼 성숙도의 묶음 수가 올라갑니다.",
|
|
231
|
+
"text.sizing-fixed-explained": "인스턴스가 커져도 크기는 그대로이고 자리만 따라갑니다. 모터·계기처럼요.",
|
|
232
|
+
"text.sizing-repeat-explained": "크기 대신 개수가 늘어납니다. 형상은 나눠 쓰므로 정점은 늘지 않지만, 복제본 하나마다 draw call 이 하나씩 듭니다.",
|
|
233
|
+
"text.sizing-scale-explained": "인스턴스가 커지면 이 부품도 같은 비율로 커집니다.",
|
|
234
|
+
"text.sizing-stretch-explained": "한 축만 늘어납니다. 프레임·벨트·레일처럼요.",
|
|
235
|
+
"text.snap-explained": "자리와 크기를 눈금에 맞춥니다. 캔버스의 눈금과 같은 간격입니다.",
|
|
236
|
+
"text.stretch-axis-now": "지금은 {axis} 축이 늘어납니다. 이 부품에서 가장 긴 축입니다.",
|
|
237
|
+
"text.thumbnail-not-made-yet": "미리보기 그림 없음",
|
|
238
|
+
"text.triangle-count": "삼각형 {count}개",
|
|
239
|
+
"text.try-clearing-the-search-or-state-filter": "검색어나 상태 조건을 지우면 전체가 보입니다.",
|
|
240
|
+
"text.type-name-already-taken": "타입 이름 {type} 은 이미 쓰이고 있습니다. 나중에 바꿀 수 없으니 다른 이름을 정해 주세요.",
|
|
241
|
+
"text.type-name-cannot-change": "타입 이름은 저장되는 식별자여서 만든 뒤에는 바꿀 수 없습니다.",
|
|
242
|
+
"text.unsaved-changes": "저장 안 됨",
|
|
243
|
+
"text.view-settings-are-not-saved": "여기 설정은 저장되지 않습니다. 보기 편한 상태를 만드는 곳이고, 자산에는 딸려 가지 않습니다.",
|
|
244
|
+
"text.what-a-figure-is": "Figure 는 직접 저작한 3D 컴포넌트입니다. 단순한 도형을 조합해 만들면 보드에 배치할 수 있는 컴포넌트가 되고, 여러 개를 배치해도 형상과 재질을 공유합니다.",
|
|
245
|
+
"title.figures": "Figure",
|
|
246
|
+
"title.new-figure": "새 Figure"
|
|
247
|
+
}
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
{
|
|
2
|
+
"button.ask": "ask",
|
|
3
|
+
"button.attach-a-picture": "image",
|
|
4
|
+
"button.center-x": "centre X",
|
|
5
|
+
"button.center-z": "centre Z",
|
|
6
|
+
"button.clear-filters": "clear filters",
|
|
7
|
+
"button.close": "close",
|
|
8
|
+
"button.delete": "delete",
|
|
9
|
+
"button.discard": "discard",
|
|
10
|
+
"button.duplicate-part": "duplicate",
|
|
11
|
+
"button.mirror-x": "mirror X",
|
|
12
|
+
"button.mirror-z": "mirror Z",
|
|
13
|
+
"button.move-part-down": "move down",
|
|
14
|
+
"button.move-part-up": "move up",
|
|
15
|
+
"button.new-figure": "new figure",
|
|
16
|
+
"button.remove-part": "delete",
|
|
17
|
+
"button.reset-view": "reset",
|
|
18
|
+
"button.save": "save",
|
|
19
|
+
"button.see-the-trend-chart": "see the trend chart",
|
|
20
|
+
"button.snap": "snap",
|
|
21
|
+
"button.take-it": "apply",
|
|
22
|
+
"button.take-n-changes": "apply {n}",
|
|
23
|
+
"button.to-floor": "to floor",
|
|
24
|
+
"label.all": "all",
|
|
25
|
+
"label.axis-consistency": "visual consistency",
|
|
26
|
+
"label.axis-consistency-short": "consistency",
|
|
27
|
+
"label.axis-depth": "depth",
|
|
28
|
+
"label.axis-detail": "level fidelity",
|
|
29
|
+
"label.axis-detail-short": "fidelity",
|
|
30
|
+
"label.axis-height": "height",
|
|
31
|
+
"label.axis-labels": "axis labels",
|
|
32
|
+
"label.axis-reactive": "state display",
|
|
33
|
+
"label.axis-reactive-short": "state",
|
|
34
|
+
"label.axis-readable": "recognisability",
|
|
35
|
+
"label.axis-readable-short": "recognition",
|
|
36
|
+
"label.axis-reuse": "shape reuse",
|
|
37
|
+
"label.axis-reuse-short": "reuse",
|
|
38
|
+
"label.axis-scale": "scale",
|
|
39
|
+
"label.axis-scale-short": "scale",
|
|
40
|
+
"label.axis-width": "width",
|
|
41
|
+
"label.budget-animations": "animation points",
|
|
42
|
+
"label.budget-groups": "material groups",
|
|
43
|
+
"label.budget-parts": "part count",
|
|
44
|
+
"label.budget-surface": "surfaces outside the palette",
|
|
45
|
+
"label.budget-transparent": "transparent materials",
|
|
46
|
+
"label.budgets": "budgets",
|
|
47
|
+
"label.by-axis": "maturity by axis",
|
|
48
|
+
"label.cast-shadow": "cast shadow",
|
|
49
|
+
"label.coordinate-ground": "coordinate ground",
|
|
50
|
+
"label.corner-round": "corner round",
|
|
51
|
+
"label.detail-L": "detailed",
|
|
52
|
+
"label.detail-M": "normal",
|
|
53
|
+
"label.detail-S": "simple",
|
|
54
|
+
"label.detail-level": "detail level",
|
|
55
|
+
"label.distinct-materials": "distinct materials",
|
|
56
|
+
"label.distinct-shapes": "distinct shapes",
|
|
57
|
+
"label.draft": "draft",
|
|
58
|
+
"label.draw-calls-at-100": "draw calls for 100",
|
|
59
|
+
"label.draw-calls-at-10k": "draw calls at 10k instances",
|
|
60
|
+
"label.emissive": "emissive",
|
|
61
|
+
"label.emissive-color": "lit color",
|
|
62
|
+
"label.environment": "environment",
|
|
63
|
+
"label.environment-cloudy": "cloudy",
|
|
64
|
+
"label.environment-factory": "factory",
|
|
65
|
+
"label.environment-home": "home",
|
|
66
|
+
"label.environment-office": "office",
|
|
67
|
+
"label.environment-rainy": "rainy",
|
|
68
|
+
"label.environment-studio": "studio",
|
|
69
|
+
"label.environment-sunny": "sunny",
|
|
70
|
+
"label.environment-warehouse": "warehouse",
|
|
71
|
+
"label.findings": "findings",
|
|
72
|
+
"label.flat-shading": "flat shading",
|
|
73
|
+
"label.floor": "floor",
|
|
74
|
+
"label.follow-camera": "follow camera",
|
|
75
|
+
"label.guides": "guides",
|
|
76
|
+
"label.hemisphere-light": "hemisphere light",
|
|
77
|
+
"label.hollow-floor": "floor thickness",
|
|
78
|
+
"label.hollow-wall": "wall thickness",
|
|
79
|
+
"label.intensity": "intensity",
|
|
80
|
+
"label.keep-round": "section",
|
|
81
|
+
"label.key-light": "key light",
|
|
82
|
+
"label.material": "material",
|
|
83
|
+
"label.maturity": "maturity",
|
|
84
|
+
"label.mode-edit": "edit",
|
|
85
|
+
"label.mode-preview": "preview",
|
|
86
|
+
"label.name": "name",
|
|
87
|
+
"label.no-color-chosen": "no color set",
|
|
88
|
+
"label.none": "none",
|
|
89
|
+
"label.now": "current",
|
|
90
|
+
"label.on-by-default": "on by default",
|
|
91
|
+
"label.palette-token": "palette token",
|
|
92
|
+
"label.part": "part",
|
|
93
|
+
"label.parts": "parts",
|
|
94
|
+
"label.placement": "position and size",
|
|
95
|
+
"label.position": "position (centre)",
|
|
96
|
+
"label.preset": "preset",
|
|
97
|
+
"label.preset-ceramic": "ceramic",
|
|
98
|
+
"label.preset-default": "default",
|
|
99
|
+
"label.preset-glass": "glass",
|
|
100
|
+
"label.preset-metal": "metal",
|
|
101
|
+
"label.preset-plastic": "plastic",
|
|
102
|
+
"label.preset-rubber": "rubber",
|
|
103
|
+
"label.preset-wood": "wood",
|
|
104
|
+
"label.primitive-cube": "box",
|
|
105
|
+
"label.primitive-cylinder": "cylinder",
|
|
106
|
+
"label.primitive-polygon": "polygon",
|
|
107
|
+
"label.primitive-rect": "rectangle",
|
|
108
|
+
"label.primitive-sphere": "sphere",
|
|
109
|
+
"label.primitive-wall": "wall",
|
|
110
|
+
"label.properties": "properties",
|
|
111
|
+
"label.proposed": "proposed",
|
|
112
|
+
"label.released": "released",
|
|
113
|
+
"label.repeat-axis": "axis it repeats along",
|
|
114
|
+
"label.repeat-pitch": "pitch",
|
|
115
|
+
"label.reuse-trend": "reuse trend",
|
|
116
|
+
"label.rotation-degrees": "rotation (degrees)",
|
|
117
|
+
"label.same-as-off": "same as unlit",
|
|
118
|
+
"label.segments": "segments",
|
|
119
|
+
"label.shape": "shape",
|
|
120
|
+
"label.shape-detail": "shape detail",
|
|
121
|
+
"label.shapes": "shapes",
|
|
122
|
+
"label.size": "size",
|
|
123
|
+
"label.sizing-fixed": "keeps its size",
|
|
124
|
+
"label.sizing-repeat": "repeats",
|
|
125
|
+
"label.sizing-rule": "when the size changes",
|
|
126
|
+
"label.sizing-scale": "scales proportionally",
|
|
127
|
+
"label.sizing-stretch": "stretches on one axis",
|
|
128
|
+
"label.sky-color": "sky color",
|
|
129
|
+
"label.status-colors": "lit colors (lamps · indicators)",
|
|
130
|
+
"label.tools": "align",
|
|
131
|
+
"label.transparent": "transparent",
|
|
132
|
+
"label.triangles": "triangles",
|
|
133
|
+
"label.triangles-at-100": "triangles for 100",
|
|
134
|
+
"label.triangles-at-10k": "triangles at 10k instances",
|
|
135
|
+
"label.view": "settings",
|
|
136
|
+
"label.weight": "weight",
|
|
137
|
+
"text.add-a-shape": "click to add a part",
|
|
138
|
+
"text.all-lights-off": "both lights are off. only self-lit surfaces show; everything else goes black — this is how you check whether a lamp is lit.",
|
|
139
|
+
"text.ask-create-example": "e.g. a three-tier conveyor sorter",
|
|
140
|
+
"text.ask-revise-example": "e.g. bring it down to two material groups",
|
|
141
|
+
"text.ask-to-create": "create",
|
|
142
|
+
"text.ask-to-revise": "revise",
|
|
143
|
+
"text.asking": "working…",
|
|
144
|
+
"text.assistant-proposed-a-figure": "here is a proposal — the result is on the right.",
|
|
145
|
+
"text.axes-not-measurable-yet": "axes that cannot be measured yet are left off the chart — {axes}. the reason is listed below.",
|
|
146
|
+
"text.bound-by-drawCalls": "draw calls reach the limit first — {per} per instance, against {budget} for a board.",
|
|
147
|
+
"text.bound-by-triangles": "triangles reach the limit first — {per} per instance, against {budget} for a board.",
|
|
148
|
+
"text.budget-not-measured-yet": "this target has not been measured yet.",
|
|
149
|
+
"text.canvas-appears-once-a-part-exists": "the canvas appears once the figure has a part.",
|
|
150
|
+
"text.center-on-x": "move to the centre of the base box on X.",
|
|
151
|
+
"text.center-on-z": "move to the centre of the base box on Z.",
|
|
152
|
+
"text.change-added": "a new part",
|
|
153
|
+
"text.change-anchor": "the anchor",
|
|
154
|
+
"text.change-base": "the base size",
|
|
155
|
+
"text.change-changed": "a changed part",
|
|
156
|
+
"text.change-detail": "the detail level",
|
|
157
|
+
"text.change-removed": "a part being removed",
|
|
158
|
+
"text.change-styleKit": "the style kit",
|
|
159
|
+
"text.collapse-parts-pane": "collapse the part list",
|
|
160
|
+
"text.collapse-properties-pane": "collapse the property pane",
|
|
161
|
+
"text.coordinate-ground-explained": "draws the origin and a grid on the floor",
|
|
162
|
+
"text.delete-figure-confirm": "delete {name}? boards already using this type will no longer find it.",
|
|
163
|
+
"text.detail-level-explained": "declares how detailed this figure is meant to be. S simple suits signs and posts, M normal suits most equipment, L detailed suits the large equipment a view is built around. the level sets the part limit, and maturity checks whether the figure lives up to it.",
|
|
164
|
+
"text.editing-tools-come-next": "the shape palette and part editor are not built yet — for now you can open, review and save.",
|
|
165
|
+
"text.emissive-explained": "the surface lights itself. 0 means it is not a lamp. it does not spill onto its surroundings.",
|
|
166
|
+
"text.environment-explained": "sets what metal surfaces reflect. it does not change the shape.",
|
|
167
|
+
"text.expand-parts-pane": "expand the part list",
|
|
168
|
+
"text.expand-properties-pane": "expand the property pane",
|
|
169
|
+
"text.figure-count": "{count} figures",
|
|
170
|
+
"text.figure-display-name": "display name",
|
|
171
|
+
"text.fits-n-instances": "up to {n}",
|
|
172
|
+
"text.floor-explained": "overlaps the coordinate ground, so usually off",
|
|
173
|
+
"text.follow-camera-explained": "turn off to fix the shadow direction",
|
|
174
|
+
"text.grade-decided-by": "what decided the grade",
|
|
175
|
+
"text.grade-explained": "the grade comes from how much of a declared limit is used, taking the one closest to its cap. averaging would hide a full limit behind the loose ones.",
|
|
176
|
+
"text.grade-scale-lead": "grade scale (limit used)",
|
|
177
|
+
"text.headroom-percent": "{percent}% headroom",
|
|
178
|
+
"text.hemisphere-light-explained": "even light from sky and ground. it lifts the shaded faces.",
|
|
179
|
+
"text.hide-all-parts": "hide all",
|
|
180
|
+
"text.hide-this-part": "hide this part while you work. not saved",
|
|
181
|
+
"text.how-many-fit": "how many one drawing holds before the overhead shows",
|
|
182
|
+
"text.instances-unit": "instances",
|
|
183
|
+
"text.keep-round-cost": "1 draw call",
|
|
184
|
+
"text.keep-round-merged": "merged into a group",
|
|
185
|
+
"text.keep-round-off": "off",
|
|
186
|
+
"text.keep-round-on": "keep round",
|
|
187
|
+
"text.limit-comes-from-level": "the detail level sets this limit.",
|
|
188
|
+
"text.maturity-blocked-needs-render": "this can only be known by rendering. the top-view silhouette measurement is not built yet.",
|
|
189
|
+
"text.maturity-blocked-no-binding": "the format has no way to connect a state value to a part yet, and the renderer does not read it.",
|
|
190
|
+
"text.maturity-blocked-no-parts": "nothing to measure — there are no parts.",
|
|
191
|
+
"text.maturity-consistency-because": "checks textures, segment presets and material count — what it takes to sit well with other assets and stay crisp when zoomed.",
|
|
192
|
+
"text.maturity-consistency-clean": "no issues",
|
|
193
|
+
"text.maturity-consistency-faults": "has issues",
|
|
194
|
+
"text.maturity-detail-because": "how much of the declared level you actually used.",
|
|
195
|
+
"text.maturity-readable-because": "how many distinct colour regions are visible from directly above, and how evenly. Viewpoint entropy (Vazquez et al.) computed over colour regions rather than faces — counting faces would reward raising the segment count alone.",
|
|
196
|
+
"text.maturity-reuse-because": "shapes saved because several parts share one. a low number is not a fault.",
|
|
197
|
+
"text.maturity-scale-because": "measured against a board holding 500 assets.",
|
|
198
|
+
"text.mirror-explained": "adds a mirrored copy on the other side — for parts that come in pairs, like legs or arms.",
|
|
199
|
+
"text.mirror-would-overlap": "already centred — a mirror would land in the same place and overlap.",
|
|
200
|
+
"text.mode-edit-explained": "place and edit parts. always at the base size.",
|
|
201
|
+
"text.mode-preview-explained": "how it looks placed on a board. base size next to the enlarged ones.",
|
|
202
|
+
"text.n-of-limit": "{used} / {limit}",
|
|
203
|
+
"text.n-parts-at-most": "up to {limit} parts",
|
|
204
|
+
"text.n-triangles": "{count} triangles",
|
|
205
|
+
"text.no-figure-matches-the-filter": "nothing matches",
|
|
206
|
+
"text.no-figure-yet": "no figures yet",
|
|
207
|
+
"text.no-findings": "nothing to report.",
|
|
208
|
+
"text.not-measurable-yet": "not measurable",
|
|
209
|
+
"text.not-measured-yet": "not measured",
|
|
210
|
+
"text.on-by-default-explained": "the starting state when placed on a board. an instance switching it wins.",
|
|
211
|
+
"text.other-segment-count": "enter a value",
|
|
212
|
+
"text.part-limit-reached": "the detail level allows no more parts — raise the level or remove a part.",
|
|
213
|
+
"text.part-limit-reached-short": "level {level} allows {limit} parts. Raise the level or remove a part.",
|
|
214
|
+
"text.pick-a-shape-above-to-start": "pick a shape above to add the first part.",
|
|
215
|
+
"text.picked-changes-do-not-validate": "the selected changes do not make a valid figure",
|
|
216
|
+
"text.picture-is-for-proportions": "used for proportions and form, not for surface detail.",
|
|
217
|
+
"text.preview-blocked-by-errors": "cannot build — the figure breaks the format. the maturity tab has the reason.",
|
|
218
|
+
"text.preview-needs-a-part": "add a part and the board view appears here.",
|
|
219
|
+
"text.put-on-floor": "drop it to the floor (Z=0).",
|
|
220
|
+
"text.renaming-a-part-breaks-bindings": "the name is a stored identifier — changing it breaks bindings on instances already placed.",
|
|
221
|
+
"text.repeat-edits-the-unit": "you author one unit even though several appear. the gizmo moves the whole run, while size and rotation apply to that one unit — the pitch is declared separately so the layout stays. a single copy cannot be edited on its own.",
|
|
222
|
+
"text.repeat-pitch-explained": "centre to centre distance. it does not depend on the part size, so widening or turning the part leaves the layout alone.",
|
|
223
|
+
"text.report-appears-when-you-add-a-part": "weight and score appear once the figure has a part.",
|
|
224
|
+
"text.reuse-score-explained": "how much headroom is left in the declared limits. the one closest to its cap sets the score.",
|
|
225
|
+
"text.saving": "saving",
|
|
226
|
+
"text.search-figure-by-name-or-type": "search by name or type",
|
|
227
|
+
"text.select-a-part-to-edit": "select a part to edit it here.",
|
|
228
|
+
"text.show-all-parts": "show all",
|
|
229
|
+
"text.show-this-part": "show this part again",
|
|
230
|
+
"text.sizing-costs-one-draw-call": "a part that does not scale proportionally cannot be merged with the others, so it costs one more draw call. that shows up in the group count under maturity.",
|
|
231
|
+
"text.sizing-fixed-explained": "the size stays, only the position follows — like a motor or a gauge.",
|
|
232
|
+
"text.sizing-repeat-explained": "the count grows instead of the size. the shape is shared so vertices do not grow, but each copy costs one draw call.",
|
|
233
|
+
"text.sizing-scale-explained": "this part grows with the instance.",
|
|
234
|
+
"text.sizing-stretch-explained": "only one axis stretches — like a frame, a belt or a rail.",
|
|
235
|
+
"text.snap-explained": "rounds position and size to the grid — the same spacing you see on the canvas.",
|
|
236
|
+
"text.stretch-axis-now": "the {axis} axis stretches. it is the longest axis of this part.",
|
|
237
|
+
"text.thumbnail-not-made-yet": "no thumbnail yet",
|
|
238
|
+
"text.triangle-count": "{count} triangles",
|
|
239
|
+
"text.try-clearing-the-search-or-state-filter": "clear the search box or the state filter to see everything.",
|
|
240
|
+
"text.type-name-already-taken": "the type name {type} is already in use. pick another one — it cannot be changed later.",
|
|
241
|
+
"text.type-name-cannot-change": "the type name is a stored identifier and cannot be changed after creation.",
|
|
242
|
+
"text.unsaved-changes": "unsaved",
|
|
243
|
+
"text.view-settings-are-not-saved": "these settings are not saved. they make the view comfortable to work in and do not travel with the asset.",
|
|
244
|
+
"text.what-a-figure-is": "a Figure is a 3D component you author. Compose it from simple shapes and it becomes a component you can place on a board, sharing shape and material across every instance.",
|
|
245
|
+
"title.figures": "figures",
|
|
246
|
+
"title.new-figure": "new figure"
|
|
247
|
+
}
|