Phase 6 구현: 커스텀 명령어 + i18n (ko/en)
- CustomInstructionService: 프리셋 5개 (번역/요약/전문리라이트/코드설명/자유프롬프트) - 커스텀 명령어 CRUD + 프리셋 보호 (삭제 불가) - CommandsPage: 명령어 목록 + 추가/편집 다이얼로그 - i18n: ko.json/en.json 리소스 파일, t() 함수, React 컨텍스트 - IPC: instruction 핸들러 6개 - AppLayout: Commands 네비게이션 추가
This commit is contained in:
parent
5ccbf85a65
commit
d940c5020e
11 changed files with 701 additions and 5 deletions
58
src/renderer/i18n/ko.json
Normal file
58
src/renderer/i18n/ko.json
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"app.name": "D3RO Voice",
|
||||
"nav.dashboard": "대시보드",
|
||||
"nav.history": "히스토리",
|
||||
"nav.dictionary": "사전",
|
||||
"nav.commands": "명령어",
|
||||
"nav.settings": "설정",
|
||||
"dashboard.title": "대시보드",
|
||||
"dashboard.totalSessions": "총 세션",
|
||||
"dashboard.totalTime": "총 시간",
|
||||
"dashboard.totalWords": "총 단어",
|
||||
"dashboard.streak": "연속",
|
||||
"dashboard.today": "오늘",
|
||||
"dashboard.sessions": "세션",
|
||||
"dashboard.time": "시간",
|
||||
"dashboard.words": "단어",
|
||||
"history.title": "히스토리",
|
||||
"history.search": "전사 내용 검색...",
|
||||
"history.empty": "아직 히스토리가 없습니다.",
|
||||
"history.noResults": "검색 결과가 없습니다.",
|
||||
"dictionary.title": "사전",
|
||||
"dictionary.search": "단어 검색...",
|
||||
"dictionary.addWord": "단어 추가",
|
||||
"dictionary.empty": "아직 등록된 단어가 없습니다. STT 정확도 향상을 위해 커스텀 단어를 추가하세요.",
|
||||
"dictionary.noResults": "검색 결과가 없습니다.",
|
||||
"dictionary.word": "단어",
|
||||
"dictionary.pronunciation": "발음 (선택)",
|
||||
"commands.title": "커스텀 명령어",
|
||||
"commands.add": "명령어 추가",
|
||||
"commands.name": "이름",
|
||||
"commands.description": "설명",
|
||||
"commands.prompt": "프롬프트",
|
||||
"commands.builtin": "기본",
|
||||
"commands.custom": "사용자",
|
||||
"settings.title": "설정",
|
||||
"settings.general": "일반",
|
||||
"settings.audio": "오디오",
|
||||
"settings.stt": "음성 인식",
|
||||
"settings.llm": "LLM",
|
||||
"settings.theme": "테마",
|
||||
"settings.language": "언어",
|
||||
"settings.closeToTray": "닫기 시 트레이로 최소화",
|
||||
"settings.autoInsert": "전사 후 자동 삽입",
|
||||
"settings.soundEffects": "효과음",
|
||||
"settings.insertMethod": "삽입 방식",
|
||||
"settings.whisperModel": "Whisper 모델",
|
||||
"settings.sttLanguage": "인식 언어",
|
||||
"settings.ollamaUrl": "Ollama 서버 URL",
|
||||
"common.cancel": "취소",
|
||||
"common.save": "저장",
|
||||
"common.delete": "삭제",
|
||||
"common.add": "추가",
|
||||
"common.edit": "편집",
|
||||
"common.close": "닫기",
|
||||
"common.loading": "로딩...",
|
||||
"status.ollamaConnected": "Ollama 연결됨",
|
||||
"status.ollamaOffline": "Ollama 오프라인"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue