@kikkimo/claude-launcher 1.0.0 → 2.0.0

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.
@@ -0,0 +1,523 @@
1
+ /**
2
+ * Traditional Chinese Language Pack
3
+ * Contains all translatable strings for Traditional Chinese locale
4
+ */
5
+
6
+ module.exports = {
7
+ // 選單部分
8
+ menu: {
9
+ main: {
10
+ title: "主選單",
11
+ launch_default: "啟動 Claude Code",
12
+ launch_skip: "啟動 Claude Code(自動跳過權限詢問)",
13
+ launch_api: "使用第三方API啟動 Claude Code",
14
+ launch_api_skip: "使用第三方API啟動 Claude Code(自動跳過權限詢問)",
15
+ api_management: "第三方API管理",
16
+ language_settings: "語言設定",
17
+ version_check: "版本更新檢查",
18
+ exit: "退出"
19
+ },
20
+ api_management: {
21
+ title: "第三方API管理",
22
+ add_new: "新增第三方API",
23
+ remove: "刪除API",
24
+ switch: "切換活躍的API",
25
+ statistics: "查看API統計",
26
+ export: "匯出設定",
27
+ import: "匯入設定",
28
+ change_password: "修改密碼",
29
+ back: "返回主選單"
30
+ },
31
+ language: {
32
+ title: "語言設定",
33
+ current: "目前語言:{0}",
34
+ select_prompt: "選擇您偏好的語言:",
35
+ changed_success: "語言已切換為{0}",
36
+ restart_note: "某些更改可能需要重新啟動應用程式",
37
+ back: "返回主選單"
38
+ }
39
+ },
40
+
41
+ // 訊息類型
42
+ messages: {
43
+ info: {
44
+ no_apis: "未設定第三方API",
45
+ add_api_first: "請先使用\"新增第三方API\"來新增API",
46
+ all_apis_removed: "所有API已被刪除",
47
+ apis_removed_or_none: "所有API已被刪除或未設定任何API。",
48
+ removal_cancelled: "取消刪除",
49
+ operation_cancelled: "操作已取消",
50
+ password_setup_skipped: "已跳過密碼設定,匯入/匯出功能永久停用",
51
+ first_time_usage: "這是您第一次使用Claude Launcher",
52
+ export_disabled: "匯入/匯出功能已停用",
53
+ no_apis_info_title: "未設定第三方API",
54
+ press_return_menu: "按任意鍵返回主選單..."
55
+ },
56
+ success: {
57
+ api_added: "API新增成功!",
58
+ api_removed: "API刪除成功!",
59
+ api_switched: "API切換成功!",
60
+ password_set: "密碼設定成功!(強度:{0})",
61
+ password_changed: "密碼修改成功!",
62
+ config_exported: "設定匯出成功!",
63
+ config_imported: "設定匯入成功!(已匯入{0}個,跳過{1}個)",
64
+ language_changed: "語言切換成功!"
65
+ },
66
+ prompts: {
67
+ press_any_key: "按任意鍵繼續...",
68
+ press_any_key_menu: "按任意鍵返回主選單...",
69
+ press_any_key_remove: "按任意鍵繼續選擇要刪除的API...",
70
+ confirm_deletion: "確定要刪除此API嗎?",
71
+ confirm_password_skip: "確定要永久跳過密碼設定嗎?",
72
+ enter_password: "輸入密碼以驗證身分:",
73
+ enter_current_password: "輸入目前密碼:",
74
+ enter_new_password: "新密碼:",
75
+ confirm_new_password: "確認密碼:",
76
+ enter_api_name: "輸入API名稱(選填):",
77
+ enter_base_url: "輸入基礎URL:",
78
+ enter_auth_token: "輸入認證令牌:",
79
+ enter_model_name: "輸入模型名稱:",
80
+ select_provider: "選擇提供商:",
81
+ enter_import_file: "輸入匯入檔案路徑:",
82
+ ctrl_c_again: "再次按 Ctrl+C 退出程式"
83
+ }
84
+ },
85
+
86
+ // 錯誤訊息
87
+ errors: {
88
+ api: {
89
+ invalid_url: "無效的基礎URL:{0}",
90
+ invalid_token: "無效的認證令牌:{0}",
91
+ invalid_model: "無效的模型:{0}",
92
+ invalid_name: "無效的API名稱:{0}",
93
+ duplicate_config: "API {1} 已存在{0}",
94
+ failed_encrypt: "認證令牌加密失敗:{0}",
95
+ failed_add: "新增API失敗:{0}",
96
+ failed_remove: "刪除API失敗:{0}",
97
+ failed_switch: "切換API失敗:{0}",
98
+ invalid_index: "無效的API索引"
99
+ },
100
+ password: {
101
+ empty: "密碼不能為空",
102
+ too_short: "密碼長度至少為6個字元",
103
+ verification_failed: "密碼驗證失敗",
104
+ verification_error: "密碼驗證錯誤:{0}",
105
+ verification_cancelled: "使用者取消密碼驗證",
106
+ setup_cancelled: "使用者取消密碼設定",
107
+ current_incorrect: "目前密碼不正確",
108
+ strength_insufficient: "密碼強度為{0} - 要求最低強度為良好或以上",
109
+ setup_failed: "設定密碼失敗:{0}",
110
+ change_failed: "修改密碼失敗:{0}",
111
+ mismatch: "密碼不匹配,請重試",
112
+ requirements_not_met: "密碼不符合安全要求:",
113
+ max_attempts: "已達到最大嘗試次數。密碼設定失敗。",
114
+ confirm_skip_title: "確認跳過密碼設定",
115
+ setup_skipped: "已跳過密碼設定,匯入/匯出功能永久停用",
116
+ verification_required: "需要密碼驗證以確認您的身分",
117
+ change_password_title: "修改密碼",
118
+ non_ascii: "密碼只能包含ASCII字元",
119
+ contains_spaces: "密碼不能包含空格或空白字元",
120
+ insufficient_types: "密碼必須包含以下至少2種類型:大寫字母、小寫字母、數字、特殊字元",
121
+ weak_pattern: "密碼包含常見弱密碼模式 - 請選擇更安全的密碼",
122
+ suggest_lowercase: "新增小寫字母 (a-z)",
123
+ suggest_uppercase: "新增大寫字母 (A-Z)",
124
+ suggest_numbers: "新增數字 (0-9)",
125
+ suggest_special: "新增特殊字元 (!@#$%^&*()_+-=[]{}等)",
126
+ suggest_longer: "嘗試使用更長的密碼並包含更多字元類型",
127
+ suggest_more_types: "考慮新增大寫字母、數字或特殊字元",
128
+ current_password_verified: "✓ 目前密碼驗證成功"
129
+ },
130
+ file: {
131
+ export_failed: "匯出設定失敗:{0}",
132
+ import_failed: "匯入設定失敗:{0}",
133
+ file_not_found: "檔案未找到:{0}",
134
+ invalid_format: "無效的設定格式 - {0}",
135
+ read_failed: "讀取檔案失敗:{0}",
136
+ write_failed: "寫入檔案失敗:{0}",
137
+ no_apis_found: "設定檔案中未找到API"
138
+ },
139
+ general: {
140
+ unexpected_error: "意外錯誤:{0}",
141
+ operation_failed: "操作失敗:{0}",
142
+ invalid_input: "無效輸入:{0}",
143
+ cancelled_by_user: "使用者取消操作"
144
+ },
145
+ validation: {
146
+ base_url_empty: "基礎URL為空或缺失",
147
+ invalid_url_format: "URL格式無效",
148
+ auth_token_empty: "認證令牌為空或缺失",
149
+ auth_token_too_short: "認證令牌太短(最少10個字元)",
150
+ model_name_empty: "模型名稱為空或缺失",
151
+ model_name_invalid: "模型名稱似乎無效或太短"
152
+ },
153
+ launcher: {
154
+ error_running_claude: "執行Claude時出錯:{0}",
155
+ error_launching_claude: "啟動Claude Code時出錯:{0}"
156
+ }
157
+ },
158
+
159
+ // 狀態訊息
160
+ status: {
161
+ loading: "載入中...",
162
+ processing: "處理中...",
163
+ validating: "驗證中...",
164
+ encrypting: "加密中...",
165
+ decrypting: "解密中...",
166
+ saving: "儲存設定中...",
167
+ exporting: "匯出設定中...",
168
+ importing: "匯入設定中...",
169
+ switching_language: "切換語言中...",
170
+ initializing: "初始化中..."
171
+ },
172
+
173
+ // API詳情和標籤
174
+ api: {
175
+ details: {
176
+ provider: "提供商",
177
+ url: "URL",
178
+ model: "模型",
179
+ token: "令牌",
180
+ usage: "使用次數",
181
+ last_used: "最後使用",
182
+ created_at: "建立時間",
183
+ never_used: "從未使用",
184
+ times_suffix: "次",
185
+ currently_active: "目前活躍的API",
186
+ no_active_api: "無活躍的API"
187
+ },
188
+ actions: {
189
+ select_to_switch: "選擇要切換的API:",
190
+ select_to_remove: "選擇要刪除的API:",
191
+ switch_success: "活躍的API:{0}",
192
+ remove_confirm: "要刪除的API:{0}",
193
+ cannot_undo: "此操作無法復原!",
194
+ removed_info: "已刪除:{0}"
195
+ }
196
+ },
197
+
198
+ // 密碼設定和管理
199
+ password: {
200
+ setup: {
201
+ title: "設定匯入/匯出密碼:",
202
+ change_title: "修改密碼:",
203
+ warning: "修改密碼將使現有匯出檔案無法存取",
204
+ requirements_title: "密碼要求:",
205
+ example: "強密碼範例:{0}",
206
+ attempt_counter: "嘗試 {0}/{1}",
207
+ first_time_title: "首次匯入/匯出設定",
208
+ why_needed: "為什麼需要密碼:",
209
+ why_needed_items: [
210
+ "匯入/匯出功能需要密碼驗證使用者身分",
211
+ "匯出的設定採用純文字格式以實現跨機器相容性",
212
+ "本機設定保持加密,密碼確保只有您可以存取"
213
+ ],
214
+ new_security_title: "新的增強安全要求:",
215
+ security_items: [
216
+ "密碼長度至少6個字元",
217
+ "必須包含至少2種類型:大寫字母、小寫字母、數字或特殊字元",
218
+ "僅限ASCII字元,不允許空格",
219
+ "進階防護弱密碼模式"
220
+ ],
221
+ options_title: "選項:",
222
+ option_set: "設定密碼:啟用帶身分驗證的匯入/匯出功能",
223
+ option_skip: "跳過設定:永久停用匯入/匯出功能(無法復原)",
224
+ warning_skip: "警告:跳過設定將永久停用匯入/匯出功能!",
225
+ menu_set_password: "設定密碼(推薦)",
226
+ menu_skip_setup: "跳過設定(永久停用匯入/匯出)",
227
+ menu_back: "任意其他鍵:返回主選單",
228
+ setup_instructions: [
229
+ "密碼長度至少6個字元",
230
+ "必須包含至少2種類型:大寫字母、小寫字母、數字或特殊字元",
231
+ "僅限ASCII字元,不允許空格",
232
+ "進階防護弱密碼模式"
233
+ ],
234
+ password_requirements_text: "密碼要求:",
235
+ example_password: "強密碼範例:{0}",
236
+ new_password_attempt: "新密碼(嘗試 {0}/{1}):",
237
+ confirm_password_prompt: "確認密碼:",
238
+ passwords_mismatch: "密碼不匹配,請重試",
239
+ password_success: "密碼設定成功!(強度:{0})",
240
+ press_continue: "按任意鍵繼續...",
241
+ enter_current_password: "輸入目前密碼:"
242
+ },
243
+ requirements: [
244
+ "至少6個字元長度",
245
+ "至少包含以下字元類型中的2種:",
246
+ " • 大寫字母 (A-Z)",
247
+ " • 小寫字母 (a-z)",
248
+ " • 數字 (0-9)",
249
+ " • 特殊字元 (!@#$%^&*()_+-=[]{}等)",
250
+ "僅限ASCII字元(無空格或特殊字元)",
251
+ "不能包含常見的弱密碼模式",
252
+ "最低密碼強度:良好(拒絕弱密碼和極弱密碼)"
253
+ ],
254
+ suggestions: [
255
+ "新增小寫字母 (a-z)",
256
+ "新增大寫字母 (A-Z)",
257
+ "新增數字 (0-9)",
258
+ "新增特殊字元 (!@#$%^&*()_+-=[]{}等)",
259
+ "嘗試使用更長的密碼並包含更多字元類型",
260
+ "考慮新增大寫字母、數字或特殊字元"
261
+ ],
262
+ strength: {
263
+ very_weak: "極弱",
264
+ weak: "弱",
265
+ good: "良好",
266
+ strong: "強",
267
+ very_strong: "極強"
268
+ }
269
+ },
270
+
271
+ // 匯入/匯出功能
272
+ import_export: {
273
+ export: {
274
+ title: "匯出設定",
275
+ description_title: "匯出功能說明:",
276
+ description_items: [
277
+ "需要密碼驗證以確認您的身分",
278
+ "匯出會在您的主目錄中儲存JSON檔案",
279
+ "檔案包含明文API設定以便輕鬆遷移",
280
+ "檔案將在匯出後自動開啟"
281
+ ],
282
+ success: "設定已匯出到:{0}",
283
+ success_title: "設定匯出成功!",
284
+ details_title: "匯出詳情:",
285
+ details_file_saved: "檔案儲存到:{0}",
286
+ details_export_dir: "匯出目錄:{0}",
287
+ details_filename: "檔案名稱:{0}",
288
+ opening_file: "正在用預設應用程式開啟匯出檔案...",
289
+ tips_title: "提示:",
290
+ tips_items: [
291
+ "分享此檔案以將設定遷移到其他機器",
292
+ "請保護此檔案的安全,因為它包含您的API設定"
293
+ ],
294
+ password_required: "匯出需要密碼驗證",
295
+ enter_password_prompt: "輸入密碼驗證身分:",
296
+ verification_failed: "密碼驗證失敗",
297
+ cannot_proceed: "無法繼續匯出",
298
+ press_return: "按任意鍵返回..."
299
+ },
300
+ import: {
301
+ title: "匯入設定",
302
+ success: "匯入完成:已匯入{0}個API,跳過{1}個",
303
+ password_required: "匯入需要密碼驗證",
304
+ file_prompt: "輸入設定檔案的完整路徑:",
305
+ processing: "正在處理匯入檔案...",
306
+ validating_file: "正在驗證設定檔案...",
307
+ verification_failed: "密碼驗證失敗",
308
+ cannot_proceed: "無法繼續匯入",
309
+ press_return: "按任意鍵返回..."
310
+ }
311
+ },
312
+
313
+ // 導航和介面
314
+ navigation: {
315
+ use_arrows: "使用 ↑↓ 方向鍵導航,Enter鍵選擇,連按兩次 Ctrl+C 退出",
316
+ use_arrows_esc: "使用 ↑↓ 導航,Enter鍵{0},ESC鍵返回主選單",
317
+ use_number_keys: "使用數字鍵選擇:",
318
+ currently_active: "目前活躍的API",
319
+ select_action: "選擇一個動作:",
320
+ no_options: "無可用選項",
321
+ enter_choice: "輸入您的選擇({0},或任意其他鍵返回主選單):",
322
+ arrow_keys_not_available: "方向鍵不可用。輸入選擇編號 (1-{0}):",
323
+ enter_choice_prompt: "[>] 輸入您的選擇 (1-2,或任意其他鍵返回主選單):"
324
+ },
325
+
326
+ // 啟動過程
327
+ launch: {
328
+ starting: "正在啟動 Claude Code...",
329
+ command: "指令:{0}",
330
+ run_in_terminal: "Claude 將在目前終端中執行。",
331
+ launcher_exit: "啟動器將退出以將控制權轉移給 Claude。",
332
+ no_active_api: "無活躍的第三方API",
333
+ no_active_api_desc: "目前沒有活躍的第三方API。",
334
+ add_configure_first: "請先新增並設定API,或切換到現有的API。",
335
+ press_key_return: "按任意鍵返回主選單...",
336
+ environment_variables: "環境變數:",
337
+ using_third_party_api: "使用第三方API設定",
338
+ deepseek_optimizations: "DeepSeek 最佳化已啟用:",
339
+ extended_timeout: "延長逾時時間 (600秒)",
340
+ non_essential_disabled: "非必要流量已停用",
341
+ press_key_return: "按任意鍵返回主選單..."
342
+ },
343
+
344
+ // 額外UI訊息
345
+ ui: {
346
+ general: {
347
+ after_skipping_password_setup: "跳過密碼設定後:",
348
+ file_path_empty: "檔案路徑不能為空",
349
+ max_attempts_import_cancelled: "已達到最大嘗試次數。匯入已取消。",
350
+ max_attempts_import_failed: "已達到最大嘗試次數。匯入失敗。",
351
+ check_file_path_json: "💡 請檢查檔案路徑並確保它是有效的JSON檔案",
352
+ launcher_version: "Claude Launcher v2.0.0",
353
+ press_key_return_menu: "按任意鍵返回選單...",
354
+ add_apis_first: "您需要先新增一些API。",
355
+ press_any_key_continue: "按任意鍵繼續...",
356
+ currently_active_api: "目前活躍的API:",
357
+ confirm_delete_api: "您確定要刪除此API設定嗎?",
358
+ action_cannot_undone: "此操作無法復原!",
359
+ type_exit_cancel: "在任何提示中輸入\"exit\"取消",
360
+ type_exit_cancel_setup: "輸入\"exit\"取消設定",
361
+ press_y_confirm: "按Y確認,按其他任意鍵取消...",
362
+ max_attempts_password_failed: "已達到最大嘗試次數。密碼設定失敗。",
363
+ passwords_mismatch: "密碼不匹配,請重試",
364
+ password_skip_consequences: [
365
+ "匯入/匯出功能將永久停用",
366
+ "無法備份或遷移API設定",
367
+ "此決定無法復原"
368
+ ],
369
+ import_function_description: "匯入功能說明:",
370
+ import_description_items: [
371
+ "匯入會從指定檔案路徑讀取JSON檔案",
372
+ "匯入資料將與目前設定合併(不覆蓋)",
373
+ "重複的API設定將自動跳過"
374
+ ],
375
+ file_input_required: "需要檔案輸入:",
376
+ file_input_items: [
377
+ "提供JSON設定檔案的完整路徑",
378
+ "檔案必須是有效的.json副檔名的JSON檔案",
379
+ "匯入前將驗證檔案"
380
+ ],
381
+ validating_file: "🔍 正在驗證檔案...",
382
+ file_validation_successful: "✓ 檔案驗證成功",
383
+ import_successful: "✓ 設定匯入成功!",
384
+ import_statistics: "📊 匯入統計:",
385
+ import_stats_items: [
386
+ "成功匯入:{0}個API設定",
387
+ "跳過重複:{1}個API設定",
388
+ "設定已與現有資料合併",
389
+ "來源檔案:{0}"
390
+ ],
391
+ import_tips: [
392
+ "💡 請檢查檔案內容和格式"
393
+ ],
394
+ goodbye: "👋 再見!",
395
+ configured_apis: "已設定的API:",
396
+ press_continue_provider_selection: "按任意鍵繼續進行提供商選擇...",
397
+
398
+ // API設定部分
399
+ add_new_api_title: "🔗 新增第三方API設定",
400
+ security_privacy_info: "🔒 安全與隱私資訊:",
401
+ security_items: [
402
+ "所有API金鑰使用AES-256-CBC加密",
403
+ "加密金鑰由機器特定資料產生",
404
+ "您的API金鑰僅儲存在本機上",
405
+ "金鑰無法在其他機器上解密",
406
+ "除了您的API呼叫外,不會向外部伺服器傳送資料"
407
+ ],
408
+ configuration_tips: "💡 設定提示:",
409
+ config_tip_items: [
410
+ "基礎URL:API端點(例如,https://api.example.com)",
411
+ "認證令牌:您的API金鑰或認證令牌",
412
+ "模型:要使用的AI模型(例如,claude-3-sonnet-20240229)"
413
+ ],
414
+ all_providers_compatible: "💡 所有列出的提供商都使用Anthropic相容的API格式",
415
+ using_custom_provider: "✓ 使用自訂提供商設定",
416
+ suggestions: "建議:",
417
+ current_password_strength: "目前密碼強度:{0}",
418
+ enter_json_file_path_attempt: "[>] 輸入JSON檔案路徑(第{0}次嘗試,共{1}次):",
419
+ currently_active_api: "目前活躍的API",
420
+ file_validation_failed: "檔案驗證失敗:{0}",
421
+ model_name_prompt: "[>] 模型名稱:",
422
+ provider_selection_required: "請選擇一個提供商(1-{0})",
423
+
424
+ // 提供商選擇
425
+ compatible_providers_title: "📋 Claude Code相容的API提供商:",
426
+ provider_anthropic: "🎯 Anthropic(官方)",
427
+ provider_anthropic_desc: "官方Anthropic API - 完全相容",
428
+ provider_moonshot: "✅ Moonshot AI(Kimi-K2)",
429
+ provider_moonshot_desc: "Moonshot AI - 提供Anthropic相容的API",
430
+ provider_deepseek: "✅ DeepSeek(DeepSeek V3/V3.1)",
431
+ provider_deepseek_desc: "DeepSeek AI - Anthropic相容端點",
432
+ provider_custom: "✅ 自訂Anthropic相容API",
433
+ provider_custom_desc: "使用Anthropic相容API的自訂伺服器",
434
+ select_provider_prompt: "[>] 選擇提供商(1-{0})或按ESC鍵取消:",
435
+
436
+ // 提供商設定
437
+ selected_provider: "✓ 已選擇:{0}",
438
+ recommended_base_url: "推薦的基礎URL:{0}",
439
+ reference_base_url: "參考基礎URL:{0}",
440
+ api_base_url_prompt: "[>] API基礎URL:",
441
+ base_url_required: "自訂提供商需要輸入基礎URL",
442
+ press_enter_default_url: "[>] 按Enter鍵使用預設值或輸入自訂URL:",
443
+ expected_format: "預期格式:{0}",
444
+ auth_token_prompt: "[>] 認證令牌:",
445
+ edit_url_hint: "(您可以透過輸入來編輯上面的URL)",
446
+
447
+ // 模型選擇
448
+ suggested_models: "建議的模型:",
449
+ select_model_prompt: "[>] 選擇模型(1-{0})或輸入自訂:",
450
+ invalid_model_selection: "❌ 無效選擇。請輸入1-{0}之間的數字或自訂模型名稱",
451
+ invalid_provider_selection: "❌ 無效選擇。請輸入1-{0}之間的數字或按Enter選擇自訂",
452
+ invalid_provider_number: "❌ 無效選擇。請輸入1-{0}之間的數字",
453
+ api_name_prompt: "[>] API名稱(選填,用於識別):",
454
+ replace_url_model_note: "注意:請將URL和模型替換為您的實際伺服器詳細資訊",
455
+
456
+ // API管理
457
+ select_api_remove: "[!] 選擇要刪除的API:",
458
+ navigate_remove_instructions: "使用 ↑↓ 導航,Enter刪除,ESC返回主選單",
459
+ confirm_deletion_prompt: "[?] 確認刪除(y/N):",
460
+ navigate_activate_instructions: "使用 ↑↓ 導航,Enter啟用,ESC返回主選單",
461
+ summary: "摘要:",
462
+
463
+ // 跳過確認選項
464
+ confirm_skip_option: "→ 我確認跳過",
465
+ reconsider_option: "重新考慮,返回密碼設定",
466
+
467
+ // 密碼要求詳情
468
+ password_requirements_title: "🔒 密碼要求:",
469
+ password_requirements_list: [
470
+ "至少6個字元長度",
471
+ "至少包含以下字元類型中的2種:",
472
+ " • 大寫字母(A-Z)",
473
+ " • 小寫字母(a-z)",
474
+ " • 數字(0-9)",
475
+ " • 特殊字元(!@#$%^&*()_+-=[]{}等)",
476
+ "僅限ASCII字元(無空格或特殊字元)",
477
+ "不能包含常見的弱密碼模式",
478
+ "最低密碼強度:良好(拒絕弱密碼和極弱密碼)"
479
+ ],
480
+ example_strong_password: "強密碼範例:{0}",
481
+ new_password_attempt: "新密碼(嘗試 {0}/{1}):"
482
+ }
483
+ },
484
+
485
+ // 統計和資訊
486
+ statistics: {
487
+ title: "API統計",
488
+ total_apis: "總API數:{0}",
489
+ active_api: "活躍的API:{0}",
490
+ most_used: "最常用的API:{0}",
491
+ total_usage: "總使用次數:{0}次",
492
+ no_usage: "無使用記錄"
493
+ },
494
+
495
+ // 版本更新
496
+ version: {
497
+ update_available: "新版本可用:v{0}(目前:v{1})",
498
+ install_command: "執行 npm update -g @kikkimo/claude-launcher 更新",
499
+ checking_updates: "檢查更新中...",
500
+ update_failed: "檢查更新失敗",
501
+ up_to_date: "已是最新版本",
502
+ skip_version: "跳過此版本",
503
+ current_version_info: "目前:v{0} | npm最新:v{1}",
504
+ npm_package_url: "npm套件位址:{0}",
505
+ always_show_mode: "版本顯示模式:始終顯示",
506
+ update_only_mode: "版本顯示模式:僅顯示更新"
507
+ },
508
+
509
+ // 版本檢查功能
510
+ version_check: {
511
+ title: "版本更新檢查",
512
+ checking: "正在檢查npm註冊表...",
513
+ please_wait: "請稍候",
514
+ error: "檢查失敗:{0}",
515
+ error_tips: "提示:檢查網路連線或稍後重試",
516
+ update_available: "🎉 發現新版本!",
517
+ current_version: "目前版本:v{0}",
518
+ latest_version: "最新版本:v{0}",
519
+ update_command: "更新指令:npm update -g @kikkimo/claude-launcher",
520
+ up_to_date: "您使用的是最新版本",
521
+ unexpected_error: "檢查過程中發生意外錯誤"
522
+ }
523
+ };