claude-code-kr 0.1.20 → 0.1.21
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 +18 -0
- package/package.json +1 -1
package/lib/patcher.js
CHANGED
|
@@ -173,6 +173,24 @@ 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 ("', '"조언자 사용 불가 ("'],
|
|
176
194
|
];
|
|
177
195
|
|
|
178
196
|
for (const [old, rep] of toolPatches) {
|