@qwen-code/qwen-code 0.11.0-preview.0 → 0.11.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 +1325 -1532
- package/locales/de.js +18 -2
- package/locales/en.js +4 -2
- package/locales/ja.js +23 -2
- package/locales/pt.js +4 -2
- package/locales/ru.js +18 -2
- package/locales/zh.js +4 -2
- package/package.json +2 -2
package/locales/de.js
CHANGED
|
@@ -1380,10 +1380,26 @@ export default {
|
|
|
1380
1380
|
'Erweiterungsseite wird im Browser geöffnet: {{url}}',
|
|
1381
1381
|
'Failed to open browser. Check out the extensions gallery at {{url}}':
|
|
1382
1382
|
'Browser konnte nicht geöffnet werden. Besuchen Sie die Erweiterungsgalerie unter {{url}}',
|
|
1383
|
+
'Use /compress when the conversation gets long to summarize history and free up context.':
|
|
1384
|
+
'Verwenden Sie /compress, wenn die Unterhaltung lang wird, um den Verlauf zusammenzufassen und Kontext freizugeben.',
|
|
1385
|
+
'Start a fresh idea with /clear or /new; the previous session stays available in history.':
|
|
1386
|
+
'Starten Sie eine neue Idee mit /clear oder /new; die vorherige Sitzung bleibt im Verlauf verfügbar.',
|
|
1387
|
+
'Use /bug to submit issues to the maintainers when something goes off.':
|
|
1388
|
+
'Verwenden Sie /bug, um Probleme an die Betreuer zu melden, wenn etwas schiefgeht.',
|
|
1389
|
+
'Switch auth type quickly with /auth.':
|
|
1390
|
+
'Wechseln Sie den Authentifizierungstyp schnell mit /auth.',
|
|
1391
|
+
'You can run any shell commands from Qwen Code using ! (e.g. !ls).':
|
|
1392
|
+
'Sie können beliebige Shell-Befehle in Qwen Code mit ! ausführen (z. B. !ls).',
|
|
1393
|
+
'Type / to open the command popup; Tab autocompletes slash commands and saved prompts.':
|
|
1394
|
+
'Geben Sie / ein, um das Befehlsmenü zu öffnen; Tab vervollständigt Slash-Befehle und gespeicherte Prompts.',
|
|
1395
|
+
'You can resume a previous conversation by running qwen --continue or qwen --resume.':
|
|
1396
|
+
'Sie können eine frühere Unterhaltung mit qwen --continue oder qwen --resume fortsetzen.',
|
|
1383
1397
|
'You can switch permission mode quickly with Shift+Tab or /approval-mode.':
|
|
1384
1398
|
'Sie können den Berechtigungsmodus schnell mit Shift+Tab oder /approval-mode wechseln.',
|
|
1385
1399
|
'You can switch permission mode quickly with Tab or /approval-mode.':
|
|
1386
1400
|
'Sie können den Berechtigungsmodus schnell mit Tab oder /approval-mode wechseln.',
|
|
1401
|
+
'Try /insight to generate personalized insights from your chat history.':
|
|
1402
|
+
'Probieren Sie /insight, um personalisierte Erkenntnisse aus Ihrem Chatverlauf zu erstellen.',
|
|
1387
1403
|
|
|
1388
1404
|
// ============================================================================
|
|
1389
1405
|
// Custom API-KEY Configuration
|
|
@@ -1450,6 +1466,6 @@ export default {
|
|
|
1450
1466
|
'Neue Modellkonfigurationen sind für Coding Plan (Bailian, Global/Intl) verfügbar. Jetzt aktualisieren?',
|
|
1451
1467
|
'{{region}} configuration updated successfully. Model switched to "{{model}}".':
|
|
1452
1468
|
'{{region}}-Konfiguration erfolgreich aktualisiert. Modell auf "{{model}}" umgeschaltet.',
|
|
1453
|
-
'Authenticated successfully with {{region}}. API key
|
|
1454
|
-
'Erfolgreich mit {{region}} authentifiziert. API-Schlüssel
|
|
1469
|
+
'Authenticated successfully with {{region}}. API key and model configs saved to settings.json (backed up).':
|
|
1470
|
+
'Erfolgreich mit {{region}} authentifiziert. API-Schlüssel und Modellkonfigurationen wurden in settings.json gespeichert (gesichert).',
|
|
1455
1471
|
};
|
package/locales/en.js
CHANGED
|
@@ -1115,6 +1115,8 @@ export default {
|
|
|
1115
1115
|
'You can switch permission mode quickly with Shift+Tab or /approval-mode.',
|
|
1116
1116
|
'You can switch permission mode quickly with Tab or /approval-mode.':
|
|
1117
1117
|
'You can switch permission mode quickly with Tab or /approval-mode.',
|
|
1118
|
+
'Try /insight to generate personalized insights from your chat history.':
|
|
1119
|
+
'Try /insight to generate personalized insights from your chat history.',
|
|
1118
1120
|
|
|
1119
1121
|
// ============================================================================
|
|
1120
1122
|
// Exit Screen / Stats
|
|
@@ -1449,6 +1451,6 @@ export default {
|
|
|
1449
1451
|
'New model configurations are available for Coding Plan (Bailian, Global/Intl). Update now?',
|
|
1450
1452
|
'{{region}} configuration updated successfully. Model switched to "{{model}}".':
|
|
1451
1453
|
'{{region}} configuration updated successfully. Model switched to "{{model}}".',
|
|
1452
|
-
'Authenticated successfully with {{region}}. API key
|
|
1453
|
-
'Authenticated successfully with {{region}}. API key
|
|
1454
|
+
'Authenticated successfully with {{region}}. API key and model configs saved to settings.json (backed up).':
|
|
1455
|
+
'Authenticated successfully with {{region}}. API key and model configs saved to settings.json (backed up).',
|
|
1454
1456
|
};
|
package/locales/ja.js
CHANGED
|
@@ -783,6 +783,27 @@ export default {
|
|
|
783
783
|
"Starting OAuth authentication for MCP server '{{name}}'...":
|
|
784
784
|
"MCPサーバー '{{name}}' のOAuth認証を開始中...",
|
|
785
785
|
// Startup Tips
|
|
786
|
+
'Tips:': 'ヒント:',
|
|
787
|
+
'Use /compress when the conversation gets long to summarize history and free up context.':
|
|
788
|
+
'会話が長くなったら /compress で履歴を要約し、コンテキストを解放できます。',
|
|
789
|
+
'Start a fresh idea with /clear or /new; the previous session stays available in history.':
|
|
790
|
+
'/clear または /new で新しいアイデアを始められます。前のセッションは履歴に残ります。',
|
|
791
|
+
'Use /bug to submit issues to the maintainers when something goes off.':
|
|
792
|
+
'問題が発生したら /bug でメンテナーに報告できます。',
|
|
793
|
+
'Switch auth type quickly with /auth.':
|
|
794
|
+
'/auth で認証タイプをすばやく切り替えられます。',
|
|
795
|
+
'You can run any shell commands from Qwen Code using ! (e.g. !ls).':
|
|
796
|
+
'Qwen Code から ! を使って任意のシェルコマンドを実行できます(例: !ls)。',
|
|
797
|
+
'Type / to open the command popup; Tab autocompletes slash commands and saved prompts.':
|
|
798
|
+
'/ を入力してコマンドポップアップを開きます。Tab でスラッシュコマンドと保存済みプロンプトを補完できます。',
|
|
799
|
+
'You can resume a previous conversation by running qwen --continue or qwen --resume.':
|
|
800
|
+
'qwen --continue または qwen --resume で前の会話を再開できます。',
|
|
801
|
+
'You can switch permission mode quickly with Shift+Tab or /approval-mode.':
|
|
802
|
+
'Shift+Tab または /approval-mode で権限モードをすばやく切り替えられます。',
|
|
803
|
+
'You can switch permission mode quickly with Tab or /approval-mode.':
|
|
804
|
+
'Tab または /approval-mode で権限モードをすばやく切り替えられます。',
|
|
805
|
+
'Try /insight to generate personalized insights from your chat history.':
|
|
806
|
+
'/insight でチャット履歴からパーソナライズされたインサイトを生成できます。',
|
|
786
807
|
'Tips for getting started:': '始めるためのヒント:',
|
|
787
808
|
'1. Ask questions, edit files, or run commands.':
|
|
788
809
|
'1. 質問したり、ファイルを編集したり、コマンドを実行したりできます',
|
|
@@ -955,6 +976,6 @@ export default {
|
|
|
955
976
|
'Coding Plan (Bailian, グローバル/国際) の新しいモデル設定が利用可能です。今すぐ更新しますか?',
|
|
956
977
|
'{{region}} configuration updated successfully. Model switched to "{{model}}".':
|
|
957
978
|
'{{region}} の設定が正常に更新されました。モデルが "{{model}}" に切り替わりました。',
|
|
958
|
-
'Authenticated successfully with {{region}}. API key
|
|
959
|
-
'{{region}} での認証に成功しました。API
|
|
979
|
+
'Authenticated successfully with {{region}}. API key and model configs saved to settings.json (backed up).':
|
|
980
|
+
'{{region}} での認証に成功しました。APIキーとモデル設定が settings.json に保存されました(バックアップ済み)。',
|
|
960
981
|
};
|
package/locales/pt.js
CHANGED
|
@@ -1132,6 +1132,8 @@ export default {
|
|
|
1132
1132
|
'Você pode retomar uma conversa anterior executando qwen --continue ou qwen --resume.',
|
|
1133
1133
|
'You can switch permission mode quickly with Shift+Tab or /approval-mode.':
|
|
1134
1134
|
'Você pode alternar o modo de permissão rapidamente com Shift+Tab ou /approval-mode.',
|
|
1135
|
+
'Try /insight to generate personalized insights from your chat history.':
|
|
1136
|
+
'Experimente /insight para gerar insights personalizados do seu histórico de conversas.',
|
|
1135
1137
|
|
|
1136
1138
|
// ============================================================================
|
|
1137
1139
|
// Exit Screen / Stats
|
|
@@ -1458,6 +1460,6 @@ export default {
|
|
|
1458
1460
|
'Novas configurações de modelo estão disponíveis para o Coding Plan (Bailian, Global/Intl). Atualizar agora?',
|
|
1459
1461
|
'{{region}} configuration updated successfully. Model switched to "{{model}}".':
|
|
1460
1462
|
'Configuração do {{region}} atualizada com sucesso. Modelo alterado para "{{model}}".',
|
|
1461
|
-
'Authenticated successfully with {{region}}. API key
|
|
1462
|
-
'Autenticado com sucesso com {{region}}.
|
|
1463
|
+
'Authenticated successfully with {{region}}. API key and model configs saved to settings.json (backed up).':
|
|
1464
|
+
'Autenticado com sucesso com {{region}}. Chave de API e configurações de modelo salvas em settings.json (com backup).',
|
|
1463
1465
|
};
|
package/locales/ru.js
CHANGED
|
@@ -1384,10 +1384,26 @@ export default {
|
|
|
1384
1384
|
'Открываем страницу расширений в браузере: {{url}}',
|
|
1385
1385
|
'Failed to open browser. Check out the extensions gallery at {{url}}':
|
|
1386
1386
|
'Не удалось открыть браузер. Посетите галерею расширений по адресу {{url}}',
|
|
1387
|
+
'Use /compress when the conversation gets long to summarize history and free up context.':
|
|
1388
|
+
'Используйте /compress, когда разговор становится длинным, чтобы подвести итог и освободить контекст.',
|
|
1389
|
+
'Start a fresh idea with /clear or /new; the previous session stays available in history.':
|
|
1390
|
+
'Начните новую идею с /clear или /new; предыдущая сессия останется в истории.',
|
|
1391
|
+
'Use /bug to submit issues to the maintainers when something goes off.':
|
|
1392
|
+
'Используйте /bug, чтобы сообщить о проблемах разработчикам.',
|
|
1393
|
+
'Switch auth type quickly with /auth.':
|
|
1394
|
+
'Быстро переключите тип аутентификации с помощью /auth.',
|
|
1395
|
+
'You can run any shell commands from Qwen Code using ! (e.g. !ls).':
|
|
1396
|
+
'Вы можете выполнять любые shell-команды в Qwen Code с помощью ! (например, !ls).',
|
|
1397
|
+
'Type / to open the command popup; Tab autocompletes slash commands and saved prompts.':
|
|
1398
|
+
'Введите /, чтобы открыть меню команд; Tab автодополняет слэш-команды и сохранённые промпты.',
|
|
1399
|
+
'You can resume a previous conversation by running qwen --continue or qwen --resume.':
|
|
1400
|
+
'Вы можете продолжить предыдущий разговор, запустив qwen --continue или qwen --resume.',
|
|
1387
1401
|
'You can switch permission mode quickly with Shift+Tab or /approval-mode.':
|
|
1388
1402
|
'Вы можете быстро переключать режим разрешений с помощью Shift+Tab или /approval-mode.',
|
|
1389
1403
|
'You can switch permission mode quickly with Tab or /approval-mode.':
|
|
1390
1404
|
'Вы можете быстро переключать режим разрешений с помощью Tab или /approval-mode.',
|
|
1405
|
+
'Try /insight to generate personalized insights from your chat history.':
|
|
1406
|
+
'Попробуйте /insight, чтобы получить персонализированные выводы из истории чатов.',
|
|
1391
1407
|
|
|
1392
1408
|
// ============================================================================
|
|
1393
1409
|
// Custom API-KEY Configuration
|
|
@@ -1454,6 +1470,6 @@ export default {
|
|
|
1454
1470
|
'Доступны новые конфигурации моделей для Coding Plan (Bailian, Глобальный/Международный). Обновить сейчас?',
|
|
1455
1471
|
'{{region}} configuration updated successfully. Model switched to "{{model}}".':
|
|
1456
1472
|
'Конфигурация {{region}} успешно обновлена. Модель переключена на "{{model}}".',
|
|
1457
|
-
'Authenticated successfully with {{region}}. API key
|
|
1458
|
-
'Успешная аутентификация с {{region}}. API-ключ
|
|
1473
|
+
'Authenticated successfully with {{region}}. API key and model configs saved to settings.json (backed up).':
|
|
1474
|
+
'Успешная аутентификация с {{region}}. API-ключ и конфигурации моделей сохранены в settings.json (резервная копия создана).',
|
|
1459
1475
|
};
|
package/locales/zh.js
CHANGED
|
@@ -1052,6 +1052,8 @@ export default {
|
|
|
1052
1052
|
'按 Shift+Tab 或输入 /approval-mode 可快速切换权限模式。',
|
|
1053
1053
|
'You can switch permission mode quickly with Tab or /approval-mode.':
|
|
1054
1054
|
'按 Tab 或输入 /approval-mode 可快速切换权限模式。',
|
|
1055
|
+
'Try /insight to generate personalized insights from your chat history.':
|
|
1056
|
+
'试试 /insight,从聊天记录中生成个性化洞察。',
|
|
1055
1057
|
|
|
1056
1058
|
// ============================================================================
|
|
1057
1059
|
// Exit Screen / Stats
|
|
@@ -1282,6 +1284,6 @@ export default {
|
|
|
1282
1284
|
'Coding Plan (百炼, 全球/国际) 有新的模型配置可用。是否立即更新?',
|
|
1283
1285
|
'{{region}} configuration updated successfully. Model switched to "{{model}}".':
|
|
1284
1286
|
'{{region}} 配置更新成功。模型已切换至 "{{model}}"。',
|
|
1285
|
-
'Authenticated successfully with {{region}}. API key
|
|
1286
|
-
'成功通过 {{region}} 认证。API Key
|
|
1287
|
+
'Authenticated successfully with {{region}}. API key and model configs saved to settings.json (backed up).':
|
|
1288
|
+
'成功通过 {{region}} 认证。API Key 和模型配置已保存至 settings.json(已备份)。',
|
|
1287
1289
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qwen-code/qwen-code",
|
|
3
|
-
"version": "0.11.0
|
|
3
|
+
"version": "0.11.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.11.0
|
|
23
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.11.0"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {},
|
|
26
26
|
"optionalDependencies": {
|