@qwen-code/qwen-code 0.6.0-preview.1 → 0.6.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.
- package/cli.js +1262 -824
- package/locales/en.js +8 -0
- package/locales/ru.js +8 -1
- package/locales/zh.js +8 -0
- package/package.json +2 -2
package/locales/en.js
CHANGED
|
@@ -258,6 +258,8 @@ export default {
|
|
|
258
258
|
', Tab to change focus': ', Tab to change focus',
|
|
259
259
|
'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.':
|
|
260
260
|
'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.',
|
|
261
|
+
'The command "/{{command}}" is not supported in non-interactive mode.':
|
|
262
|
+
'The command "/{{command}}" is not supported in non-interactive mode.',
|
|
261
263
|
// ============================================================================
|
|
262
264
|
// Settings Labels
|
|
263
265
|
// ============================================================================
|
|
@@ -590,6 +592,12 @@ export default {
|
|
|
590
592
|
'No conversation found to summarize.': 'No conversation found to summarize.',
|
|
591
593
|
'Failed to generate project context summary: {{error}}':
|
|
592
594
|
'Failed to generate project context summary: {{error}}',
|
|
595
|
+
'Saved project summary to {{filePathForDisplay}}.':
|
|
596
|
+
'Saved project summary to {{filePathForDisplay}}.',
|
|
597
|
+
'Saving project summary...': 'Saving project summary...',
|
|
598
|
+
'Generating project summary...': 'Generating project summary...',
|
|
599
|
+
'Failed to generate summary - no text content received from LLM response':
|
|
600
|
+
'Failed to generate summary - no text content received from LLM response',
|
|
593
601
|
|
|
594
602
|
// ============================================================================
|
|
595
603
|
// Commands - Model
|
package/locales/ru.js
CHANGED
|
@@ -260,7 +260,8 @@ export default {
|
|
|
260
260
|
', Tab to change focus': ', Tab для смены фокуса',
|
|
261
261
|
'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.':
|
|
262
262
|
'Для применения изменений необходимо перезапустить Qwen Code. Нажмите r для выхода и применения изменений.',
|
|
263
|
-
|
|
263
|
+
'The command "/{{command}}" is not supported in non-interactive mode.':
|
|
264
|
+
'Команда "/{{command}}" не поддерживается в неинтерактивном режиме.',
|
|
264
265
|
// ============================================================================
|
|
265
266
|
// Метки настроек
|
|
266
267
|
// ============================================================================
|
|
@@ -604,6 +605,12 @@ export default {
|
|
|
604
605
|
'Не найдено диалогов для создания сводки.',
|
|
605
606
|
'Failed to generate project context summary: {{error}}':
|
|
606
607
|
'Не удалось сгенерировать сводку контекста проекта: {{error}}',
|
|
608
|
+
'Saved project summary to {{filePathForDisplay}}.':
|
|
609
|
+
'Сводка проекта сохранена в {{filePathForDisplay}}',
|
|
610
|
+
'Saving project summary...': 'Сохранение сводки проекта...',
|
|
611
|
+
'Generating project summary...': 'Генерация сводки проекта...',
|
|
612
|
+
'Failed to generate summary - no text content received from LLM response':
|
|
613
|
+
'Не удалось сгенерировать сводку - не получен текстовый контент из ответа LLM',
|
|
607
614
|
|
|
608
615
|
// ============================================================================
|
|
609
616
|
// Команды - Модель
|
package/locales/zh.js
CHANGED
|
@@ -249,6 +249,8 @@ export default {
|
|
|
249
249
|
', Tab to change focus': ',Tab 切换焦点',
|
|
250
250
|
'To see changes, Qwen Code must be restarted. Press r to exit and apply changes now.':
|
|
251
251
|
'要查看更改,必须重启 Qwen Code。按 r 退出并立即应用更改。',
|
|
252
|
+
'The command "/{{command}}" is not supported in non-interactive mode.':
|
|
253
|
+
'不支持在非交互模式下使用命令 "/{{command}}"。',
|
|
252
254
|
// ============================================================================
|
|
253
255
|
// Settings Labels
|
|
254
256
|
// ============================================================================
|
|
@@ -560,6 +562,12 @@ export default {
|
|
|
560
562
|
'No conversation found to summarize.': '未找到要总结的对话',
|
|
561
563
|
'Failed to generate project context summary: {{error}}':
|
|
562
564
|
'生成项目上下文摘要失败:{{error}}',
|
|
565
|
+
'Saved project summary to {{filePathForDisplay}}.':
|
|
566
|
+
'项目摘要已保存到 {{filePathForDisplay}}',
|
|
567
|
+
'Saving project summary...': '正在保存项目摘要...',
|
|
568
|
+
'Generating project summary...': '正在生成项目摘要...',
|
|
569
|
+
'Failed to generate summary - no text content received from LLM response':
|
|
570
|
+
'生成摘要失败 - 未从 LLM 响应中接收到文本内容',
|
|
563
571
|
|
|
564
572
|
// ============================================================================
|
|
565
573
|
// Commands - Model
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qwen-code/qwen-code",
|
|
3
|
-
"version": "0.6.0
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "Qwen Code - AI-powered coding assistant",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"locales"
|
|
21
21
|
],
|
|
22
22
|
"config": {
|
|
23
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.6.0
|
|
23
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.6.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"tiktoken": "^1.0.21"
|