@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
+ * Chinese Language Pack
3
+ * Contains all translatable strings for 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: "使用 ↑↓ 方向键导航,回车键选择,连击两次 Ctrl+C 退出",
316
+ use_arrows_esc: "使用 ↑↓ 导航,回车键{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: "[>] 按回车键使用默认值或输入自定义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}之间的数字或按回车选择自定义",
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: "使用 ↑↓ 导航,回车删除,ESC返回主菜单",
459
+ confirm_deletion_prompt: "[?] 确认删除(y/N):",
460
+ navigate_activate_instructions: "使用 ↑↓ 导航,回车激活,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
+ };