Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016WRFJmmhPi4exAzHgPZHMT
40 lines
2.0 KiB
TypeScript
40 lines
2.0 KiB
TypeScript
/* =============================================================================
|
|
* ui_template_locale_m1.ts
|
|
* M01 마스터 요소 화면(시스템 관리자) 사전 — 신규 문구는 최하단에 추가.
|
|
* ========================================================================== */
|
|
|
|
export const ui_locales_m1 = {
|
|
B01_Dashboard_MasterElements: ["마스터 요소", "Master Elements"],
|
|
M01_Title: ["마스터 요소", "Master Elements"],
|
|
M01_AdminOnly: ["시스템 관리자만 볼 수 있음", "System administrators only"],
|
|
M01_LoadFailed: ["마스터 요소를 못 읽음", "Failed to load master elements"],
|
|
M01_PickFile: ["왼쪽에서 그룹과 파일을 고를 것", "Pick a group and a file on the left"],
|
|
M01_Search: ["이름 찾기", "Find by name"],
|
|
M01_Prev: ["이전", "Prev"],
|
|
M01_Next: ["다음", "Next"],
|
|
M01_Page: ["쪽", "pages"],
|
|
M01_Rows: ["줄", "rows"],
|
|
M01_NoRows: ["줄 없음", "No rows"],
|
|
M01_RowAdd: ["줄 더하기", "Add row"],
|
|
M01_RowDelete: ["지우기", "Delete"],
|
|
M01_RowRestore: ["되살리기", "Restore"],
|
|
M01_RowRemove: ["빼기", "Remove"],
|
|
M01_BackToTables: ["← 표 목록", "← Tables"],
|
|
M01_Changed: ["고친 곳 {value}", "{value} changes"],
|
|
M01_Save: ["저장", "Save"],
|
|
M01_Discard: ["고친 것 버리기", "Discard changes"],
|
|
M01_DiscardConfirm: ["고친 것을 모두 버릴까?", "Discard all changes?"],
|
|
M01_Saved: ["저장했음", "Saved"],
|
|
M01_SaveFailed: ["저장 못 함 — {value}", "Save failed — {value}"],
|
|
M01_Stale: [
|
|
"그 사이 파일이 바뀜({value}) — 고친 것을 버리고 다시 읽은 뒤 다시 고칠 것",
|
|
"Files changed meanwhile ({value}) — discard and reload, then edit again",
|
|
],
|
|
M01_StaleReload: ["버리고 다시 읽기", "Discard and reload"],
|
|
M01_FileStale: [
|
|
"고치기 시작한 뒤 이 파일이 바뀜 — 저장하면 막힘",
|
|
"This file changed after you started editing — saving will be refused",
|
|
],
|
|
M01_CheckErrors: ["검사에 걸림", "Validation failed"],
|
|
} as const;
|