claude-code-kr 0.1.20 → 0.1.22
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/lib/patcher.js +39 -0
- package/package.json +1 -1
package/lib/patcher.js
CHANGED
|
@@ -173,6 +173,45 @@ function apply(cliJs) {
|
|
|
173
173
|
['"· What should Claude do instead?"', '"· 대신 무엇을 할까요?"'],
|
|
174
174
|
// 시스템 메시지
|
|
175
175
|
['Claude Code has switched from npm to native installer. Run `claude install` or see https://docs.anthropic.com/en/docs/claude-code/getting-started for more options.', 'Claude Code가 npm에서 네이티브 설치로 전환되었습니다. `claude install`을 실행하거나 https://docs.anthropic.com/en/docs/claude-code/getting-started 을 참고하세요.'],
|
|
176
|
+
// 환영/세션
|
|
177
|
+
['"Welcome back!"', '"다시 오셨네요!"'],
|
|
178
|
+
['"Welcome to Claude Code"', '"Claude Code에 오신 것을 환영합니다"'],
|
|
179
|
+
['"No recent activity"', '"최근 활동 없음"'],
|
|
180
|
+
['"No conversations found to resume."', '"이어서 할 대화가 없습니다."'],
|
|
181
|
+
['"Resuming session…"', '"세션 이어서 하는 중…"'],
|
|
182
|
+
// 압축
|
|
183
|
+
['"Compacting conversation…"', '"대화 압축 중…"'],
|
|
184
|
+
['"Compacting conversation"', '"대화 압축 중"'],
|
|
185
|
+
['"Conversation compacted"', '"대화 압축 완료"'],
|
|
186
|
+
// 도구 완료 (Done)
|
|
187
|
+
['j===1?"1 tool use":`${j} tool uses`', 'j===1?"도구 1회":`도구 ${j}회`'],
|
|
188
|
+
// thinking 표시
|
|
189
|
+
['`thinking${G}`:typeof f==="number"?`thought for ${Math.max(1,Math.round(f/1000))}s`', '`사고 중${G}`:typeof f==="number"?`${Math.max(1,Math.round(f/1000))}초 사고`'],
|
|
190
|
+
// hook says
|
|
191
|
+
['" says: "', '": "'],
|
|
192
|
+
// Advisor
|
|
193
|
+
['"Advisor unavailable ("', '"조언자 사용 불가 ("'],
|
|
194
|
+
// 시작 화면
|
|
195
|
+
['"Tips for getting started"', '"시작 가이드"'],
|
|
196
|
+
['"Recent activity"', '"최근 활동"'],
|
|
197
|
+
['"Run /init to create a CLAUDE.md file with instructions for Claude"', '"/init으로 Claude 지시사항 CLAUDE.md 파일 만들기"'],
|
|
198
|
+
// 상태 표시
|
|
199
|
+
['"Answering…"', '"답변 중…"'],
|
|
200
|
+
['"Initializing…"', '"초기화 중…"'],
|
|
201
|
+
['"Shortcuts"', '"단축키"'],
|
|
202
|
+
// 권한 대화상자
|
|
203
|
+
['"tell Claude what to do next"', '"다음에 할 일을 알려주세요"'],
|
|
204
|
+
['"tell Claude what to do differently"', '"다르게 할 일을 알려주세요"'],
|
|
205
|
+
['"What would you like to do?"', '"무엇을 할까요?"'],
|
|
206
|
+
['"Yes, allow all edits during this session"', '"네, 이 세션에서 모든 수정 허용"'],
|
|
207
|
+
// 계획 승인
|
|
208
|
+
['"Approved Plan"', '"계획 승인됨"'],
|
|
209
|
+
['"Approved Plan (edited by user)"', '"계획 승인됨 (사용자 수정)"'],
|
|
210
|
+
// progressMessage (prompt 커맨드용이지만 UI에 표시됨)
|
|
211
|
+
['progressMessage:"creating commit"', 'progressMessage:"커밋 생성 중"'],
|
|
212
|
+
['progressMessage:"creating commit and PR"', 'progressMessage:"커밋 및 PR 생성 중"'],
|
|
213
|
+
['progressMessage:"reviewing pull request"', 'progressMessage:"풀 리퀘스트 리뷰 중"'],
|
|
214
|
+
['progressMessage:"analyzing your sessions"', 'progressMessage:"세션 분석 중"'],
|
|
176
215
|
];
|
|
177
216
|
|
|
178
217
|
for (const [old, rep] of toolPatches) {
|