| 1 | import type { ChromeDict } from "../types"; |
| 2 | |
| 3 | /** |
| 4 | * Korean chrome dictionary. |
| 5 | * |
| 6 | * Terminology follows the TUI locale pack (`crates/tui/locales/ko.json`): |
| 7 | * mode and permission names stay literal (Plan / Act / Operate, Ask / |
| 8 | * Auto-Review / Full Access), 프로바이더 is "provider", 저장소 is |
| 9 | * "repository", 추론 is "reasoning", 권한 is "permission". Commands, package |
| 10 | * names, and GitHub are left as-is per docs/VOICE.md. |
| 11 | * |
| 12 | * The secondary nav labels pair the Korean primary with a short English |
| 13 | * label — the Han pair (文档 / 指引 / …) is the English edition's own |
| 14 | * editorial device and is never hardcoded at a call site. |
| 15 | * |
| 16 | * Nav labels are kept to two–four syllables: they sit in one horizontal |
| 17 | * masthead row. "FAQ" therefore renders as 질의응답 rather than the longer |
| 18 | * 자주 묻는 질문, in both the nav and the footer so the two agree. |
| 19 | */ |
| 20 | export const chrome: ChromeDict = { |
| 21 | navDocs: "문서", |
| 22 | navStart: "시작하기", |
| 23 | navInstall: "설치", |
| 24 | navFaq: "질의응답", |
| 25 | navCommunity: "커뮤니티", |
| 26 | navContribute: "기여", |
| 27 | |
| 28 | navDocsSecondary: "Docs", |
| 29 | navStartSecondary: "Start", |
| 30 | navInstallSecondary: "Install", |
| 31 | navFaqSecondary: "FAQ", |
| 32 | navCommunitySecondary: "Community", |
| 33 | navContributeSecondary: "Contribute", |
| 34 | |
| 35 | skipToContent: "본문으로 건너뛰기", |
| 36 | |
| 37 | |
| 38 | navPrimaryAria: "기본 탐색", |
| 39 | navHomeAria: "Codewhale 홈", |
| 40 | |
| 41 | installCta: "설치 →", |
| 42 | |
| 43 | wordmarkSeal: "深", |
| 44 | wordmarkTag: "어떤 모델이든 · 로컬 우선", |
| 45 | |
| 46 | // Newspaper dating: Korean papers write the issue date with the 자 suffix |
| 47 | // (8월 3일자), so the label is the date itself rather than "제N호". |
| 48 | issueLabel: "{date}자", |
| 49 | dateLocale: "ko-KR", |
| 50 | |
| 51 | starsAria: "GitHub 스타 수", |
| 52 | githubFallback: "GitHub", |
| 53 | |
| 54 | tickerLiveLabel: "실시간", |
| 55 | tickerLiveTag: "LIVE", |
| 56 | tickerMerged: "병합됨", |
| 57 | tickerOpened: "열림", |
| 58 | tickerClosed: "닫힘", |
| 59 | tickerReleased: "릴리스", |
| 60 | tickerFirstContribution: "첫 기여", |
| 61 | tickerBy: "{handle} 님", |
| 62 | tickerAria: "저장소 최근 활동", |
| 63 | |
| 64 | traceLabel: "추론 기록", |
| 65 | traceTabsAria: "세션 발췌", |
| 66 | |
| 67 | menuOpen: "메뉴 열기", |
| 68 | menuClose: "메뉴 닫기", |
| 69 | |
| 70 | themeAuto: "자동", |
| 71 | themeLight: "밝게", |
| 72 | themeDark: "어둡게", |
| 73 | themeAria: "문서 테마: {mode} (클릭하면 전환)", |
| 74 | themeTitle: "문서 테마 · 자동 / 밝게 / 어둡게", |
| 75 | |
| 76 | footerTagline: |
| 77 | "깊은 바다로 대신 잠수합니다 — 오픈 소스 런타임의 문서, 소스 코드, 커뮤니티.", |
| 78 | footerProduct: "제품", |
| 79 | footerProject: "프로젝트", |
| 80 | footerDocs: "문서", |
| 81 | footerGuide: "시작 가이드", |
| 82 | footerInstall: "설치", |
| 83 | footerModels: "모델", |
| 84 | footerRuntime: "런타임", |
| 85 | footerFaq: "질의응답", |
| 86 | footerIssues: "이슈", |
| 87 | footerContribute: "기여", |
| 88 | footerLicense: "MIT 라이선스", |
| 89 | footerCanonicalSource: "공식 소스: ", |
| 90 | footerReleases: " · 릴리스: ", |
| 91 | footerReleasesLink: "GitHub 릴리스", |
| 92 | footerSecurity: "보안 연락처", |
| 93 | |
| 94 | switcherLabel: "언어", |
| 95 | // "(으)로" is the standard Korean UI hedge when the interpolated noun's |
| 96 | // final consonant is unknown at write time. |
| 97 | switcherSwitchTo: "{label}(으)로 전환", |
| 98 | partialBadge: "(일부 번역)", |
| 99 | }; |
| 100 |