claude-code-kr 0.3.21 → 0.3.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.
@@ -63,6 +63,7 @@
63
63
  "\"Discover\"": "\"탐색\"",
64
64
  "\"Dismiss\"": "\"닫기\"",
65
65
  "\"Do you want to proceed?\"": "\"실행할까요?\"",
66
+ "\"Don't ask me again\"": "\"다시 묻지 않기\"",
66
67
  "\"Double-tap esc to rewind the code and/or conversation to a previous point in time\"": "\"esc 두 번 눌러 코드와 대화를 이전 시점으로 되돌리세요\"",
67
68
  "\"Double-tap esc to rewind the conversation to a previous point in time\"": "\"esc 두 번 눌러 대화를 이전 시점으로 되돌리세요\"",
68
69
  "\"Edit color\"": "\"색상 변경\"",
@@ -153,7 +154,10 @@
153
154
  "\"Restore code\"": "\"코드 복원\"",
154
155
  "\"Restore conversation\"": "\"대화 복원\"",
155
156
  "\"Restore the code and/or conversation to a previous point\"": "\"코드 또는 대화를 이전 시점으로 복원\"",
157
+ "\"Resume from summary (recommended)\"": "\"요약에서 이어서 하기 (권장)\"",
158
+ "\"Resume full session as-is\"": "\"전체 세션 그대로 이어가기\"",
156
159
  "\"Resuming session…\"": "\"세션 이어서 하는 중…\"",
160
+ "\"Resuming the full session will consume a substantial portion of your usage limits. We recommend resuming from a summary.\"": "\"전체 세션을 이어서 하면 사용량 한도의 상당 부분을 소비합니다. 요약에서 이어서 하는 것을 권장합니다.\"",
157
161
  "\"Retry the installation\"": "\"설치 재시도\"",
158
162
  "\"Run /init to create a CLAUDE.md file with instructions for Claude\"": "\"/init으로 Claude 지시사항 CLAUDE.md 파일 만들기\"",
159
163
  "\"Run /install-github-app to tag @claude right from your Github issues and PRs\"": "\"/install-github-app으로 GitHub 이슈와 PR에서 @claude를 태그하세요\"",
@@ -105,6 +105,10 @@ const patches = [
105
105
  [/return`\$\{([\w$]+)\}d`;if\(([\w$]+)>0\)return`\$\{\2\}h`;if\(([\w$]+)>0\)return`\$\{\3\}m`;return`\$\{([\w$]+)\}s`/,
106
106
  'return`${$1}일`;if($2>0)return`${$2}시간`;if($3>0)return`${$3}분`;return`${$4}초`'],
107
107
 
108
+ // 세션 이어가기 — "This session is 14h old and 20.6만 tokens"
109
+ [/This session is \$\{([\w$]+)\} old and \$\{([\w$]+)\} tokens/,
110
+ '이 세션은 ${$1} 경과, ${$2} 토큰입니다'],
111
+
108
112
  // formatDuration — 인라인 짧은 버전 (spinner용)
109
113
  // function fn(q){if(q<60000)return`${Math.round(q/1000)}s`;let K=...,_=...;return _>0?`${K}m ${_}s`:`${K}m`}
110
114
  [/if\((\w+)<60000\)return`\$\{Math\.round\(\1\/1000\)\}s`;let (\w+)=Math\.floor\(\1\/60000\),(\w+)=Math\.round\(\1%60000\/1000\);return \3>0\?`\$\{\2\}m \$\{\3\}s`:`\$\{\2\}m`/,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-kr",
3
- "version": "0.3.21",
3
+ "version": "0.3.22",
4
4
  "description": "Claude Code 한글 패치 CLI — /btw → /근데, /help → /도움, /compact → /압축",
5
5
  "main": "./index.js",
6
6
  "bin": {