@mmmbuto/qwen-code-termux 0.14.3-termux → 0.15.5-termux
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/README.md +1 -1
- package/bundled/batch/SKILL.md +304 -0
- package/bundled/loop/SKILL.md +1 -0
- package/bundled/qc-helper/SKILL.md +1 -0
- package/bundled/qc-helper/docs/configuration/auth.md +13 -6
- package/bundled/qc-helper/docs/configuration/settings.md +158 -109
- package/bundled/qc-helper/docs/features/_meta.ts +4 -0
- package/bundled/qc-helper/docs/features/arena.md +3 -2
- package/bundled/qc-helper/docs/features/commands.md +67 -11
- package/bundled/qc-helper/docs/features/dual-output.md +593 -0
- package/bundled/qc-helper/docs/features/headless.md +61 -0
- package/bundled/qc-helper/docs/features/hooks.md +408 -120
- package/bundled/qc-helper/docs/features/mcp.md +100 -14
- package/bundled/qc-helper/docs/features/memory.md +168 -0
- package/bundled/qc-helper/docs/features/sandbox.md +9 -1
- package/bundled/qc-helper/docs/features/status-line.md +36 -10
- package/bundled/qc-helper/docs/features/sub-agents.md +126 -7
- package/bundled/qc-helper/docs/features/tips.md +54 -0
- package/bundled/qc-helper/docs/features/tool-use-summaries.md +178 -0
- package/bundled/qc-helper/docs/overview.md +4 -4
- package/bundled/qc-helper/docs/quickstart.md +15 -9
- package/bundled/qc-helper/docs/support/tos-privacy.md +1 -1
- package/bundled/qc-helper/docs/support/troubleshooting.md +9 -3
- package/bundled/review/SKILL.md +3 -2
- package/cli.js +241845 -206771
- package/locales/ca.js +2143 -0
- package/locales/de.js +82 -8
- package/locales/en.js +91 -8
- package/locales/fr.js +2099 -0
- package/locales/ja.js +81 -8
- package/locales/pt.js +83 -8
- package/locales/ru.js +81 -8
- package/locales/zh-TW.js +1678 -0
- package/locales/zh.js +88 -8
- package/package.json +2 -2
- package/bundled/qc-helper/docs/configuration/memory.md +0 -0
package/locales/ja.js
CHANGED
|
@@ -315,6 +315,8 @@ export default {
|
|
|
315
315
|
'Vision Model Preview': 'ビジョンモデルプレビュー',
|
|
316
316
|
'Tool Schema Compliance': 'ツールスキーマ準拠',
|
|
317
317
|
'Auto (detect from system)': '自動(システムから検出)',
|
|
318
|
+
'Auto (detect terminal theme)': '自動(端末テーマを検出)',
|
|
319
|
+
Auto: '自動',
|
|
318
320
|
'check session stats. Usage: /stats [model|tools]':
|
|
319
321
|
'セッション統計を確認。使い方: /stats [model|tools]',
|
|
320
322
|
'Show model-specific usage statistics.': 'モデル別の使用統計を表示',
|
|
@@ -435,6 +437,7 @@ export default {
|
|
|
435
437
|
'User Settings': 'ユーザー設定',
|
|
436
438
|
'System Settings': 'システム設定',
|
|
437
439
|
Extensions: '拡張機能',
|
|
440
|
+
'Session (temporary)': 'セッション(一時)',
|
|
438
441
|
// Hooks - Status
|
|
439
442
|
'✓ Enabled': '✓ 有効',
|
|
440
443
|
'✗ Disabled': '✗ 無効',
|
|
@@ -648,6 +651,45 @@ export default {
|
|
|
648
651
|
'使い方: /memory add [--global|--project] <記憶するテキスト>',
|
|
649
652
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
650
653
|
'メモリ {{scope}} への保存を試行中: "{{fact}}"',
|
|
654
|
+
'Open auto-memory folder': '自動メモリフォルダを開く',
|
|
655
|
+
'Auto-memory: {{status}}': '自動メモリ: {{status}}',
|
|
656
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
657
|
+
'自動統合: {{status}} · {{lastDream}} · /dream で実行',
|
|
658
|
+
never: '未実行',
|
|
659
|
+
on: 'オン',
|
|
660
|
+
off: 'オフ',
|
|
661
|
+
'❆ dreaming': '❆ 整理中',
|
|
662
|
+
'Remove matching entries from managed auto-memory.':
|
|
663
|
+
'マネージド自動メモリから一致するエントリを削除する。',
|
|
664
|
+
'Usage: /forget <memory text to remove>':
|
|
665
|
+
'使い方: /forget <削除するメモリテキスト>',
|
|
666
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
667
|
+
'一致するマネージド自動メモリエントリなし: {{query}}',
|
|
668
|
+
'Show managed auto-memory status.':
|
|
669
|
+
'マネージド自動メモリのステータスを表示する。',
|
|
670
|
+
'Run managed auto-memory extraction for the current session.':
|
|
671
|
+
'現在のセッションのマネージド自動メモリ抽出を実行する。',
|
|
672
|
+
'Managed auto-memory root: {{root}}':
|
|
673
|
+
'マネージド自動メモリのルート: {{root}}',
|
|
674
|
+
'Managed auto-memory topics:': 'マネージド自動メモリのトピック:',
|
|
675
|
+
'No extraction cursor found yet.': 'まだ抽出カーソルが見つかりません。',
|
|
676
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
677
|
+
'カーソル: セッション={{sessionId}}, オフセット={{offset}}, 更新={{updatedAt}}',
|
|
678
|
+
'No chat client available to extract memory.':
|
|
679
|
+
'メモリを抽出できるチャットクライアントがありません。',
|
|
680
|
+
'Managed auto-memory extraction is already running.':
|
|
681
|
+
'マネージド自動メモリ抽出はすでに実行中です。',
|
|
682
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
683
|
+
'マネージド自動メモリ抽出で新しい永続メモリは見つかりませんでした。',
|
|
684
|
+
'Consolidate managed auto-memory topic files.':
|
|
685
|
+
'マネージド自動メモリトピックファイルを統合する。',
|
|
686
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
687
|
+
'自動メモリ統合で改善するものは見つかりませんでした。',
|
|
688
|
+
'Deduplicated entries: {{count}}': '重複除去したエントリ: {{count}}',
|
|
689
|
+
'Save a durable memory using the save_memory tool.':
|
|
690
|
+
'save_memoryツールを使用して永続メモリを保存する。',
|
|
691
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
692
|
+
'使い方: /remember [--global|--project] <覚えておくテキスト>',
|
|
651
693
|
// MCP
|
|
652
694
|
'Authenticate with an OAuth-enabled MCP server':
|
|
653
695
|
'OAuth対応のMCPサーバーで認証',
|
|
@@ -966,14 +1008,22 @@ export default {
|
|
|
966
1008
|
'続行するには認証方法を選択してください。Ctrl+C をもう一度押すと終了します',
|
|
967
1009
|
'Terms of Services and Privacy Notice': '利用規約とプライバシー通知',
|
|
968
1010
|
'Qwen OAuth': 'Qwen OAuth',
|
|
969
|
-
'
|
|
970
|
-
'
|
|
971
|
-
'
|
|
972
|
-
'
|
|
1011
|
+
'Discontinued — switch to Coding Plan or API Key':
|
|
1012
|
+
'終了 — Coding Plan または API Key に切り替えてください',
|
|
1013
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch provider.':
|
|
1014
|
+
'Qwen OAuth 無料枠は 2026-04-15 に終了しました。/auth を実行してプロバイダーを切り替えてください。',
|
|
1015
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.':
|
|
1016
|
+
'Qwen OAuth 無料枠は 2026-04-15 に終了しました。Coding Plan または API Key を選択してください。',
|
|
1017
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.':
|
|
1018
|
+
'Qwen OAuth無料プランは2026-04-15に終了しました。他のプロバイダーのモデルを選択するか、/authを実行して切り替えてください。',
|
|
1019
|
+
'\n⚠ Qwen OAuth free tier was discontinued on 2026-04-15. Please select another option.\n':
|
|
1020
|
+
'\n⚠ Qwen OAuth 無料枠は 2026-04-15 に終了しました。他のオプションを選択してください。\n',
|
|
973
1021
|
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
|
|
974
1022
|
'有料 \u00B7 5時間最大6,000リクエスト \u00B7 すべての Alibaba Cloud Coding Plan モデル',
|
|
975
1023
|
'Alibaba Cloud Coding Plan': 'Alibaba Cloud Coding Plan',
|
|
976
1024
|
'Bring your own API key': '自分のAPIキーを使用',
|
|
1025
|
+
'Browser-based authentication with third-party providers (e.g. OpenRouter, ModelScope)':
|
|
1026
|
+
'サードパーティプロバイダーによるブラウザベースの認証(例:OpenRouter、ModelScope)',
|
|
977
1027
|
'API-KEY': 'API-KEY',
|
|
978
1028
|
'Use coding plan credentials or your own api-keys/providers.':
|
|
979
1029
|
'Coding Planの認証情報またはご自身のAPIキー/プロバイダーをご利用ください。',
|
|
@@ -1123,6 +1173,7 @@ export default {
|
|
|
1123
1173
|
'Press Ctrl+C again to exit.': 'Ctrl+C をもう一度押すと終了します',
|
|
1124
1174
|
'Press Ctrl+D again to exit.': 'Ctrl+D をもう一度押すと終了します',
|
|
1125
1175
|
'Press Esc again to clear.': 'Esc をもう一度押すとクリアします',
|
|
1176
|
+
'Press ↑ to edit queued messages': '↑ を押してキュー内のメッセージを編集',
|
|
1126
1177
|
// MCP Status
|
|
1127
1178
|
'⏳ MCP servers are starting up ({{count}} initializing)...':
|
|
1128
1179
|
'⏳ MCPサーバーを起動中({{count}} 初期化中)...',
|
|
@@ -1175,6 +1226,18 @@ export default {
|
|
|
1175
1226
|
'Tab または /approval-mode で権限モードをすばやく切り替えられます。',
|
|
1176
1227
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1177
1228
|
'/insight でチャット履歴からパーソナライズされたインサイトを生成できます。',
|
|
1229
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1230
|
+
'Ctrl+O でコンパクトモードを切り替え — ツール出力と思考を非表示にしてすっきり表示。',
|
|
1231
|
+
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1232
|
+
'QWEN.md ファイルを追加すると、Qwen Code に永続的なプロジェクトコンテキストを与えられます。',
|
|
1233
|
+
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
1234
|
+
'会話を中断せずに /btw でちょっとした横道の質問ができます。',
|
|
1235
|
+
'Context is almost full! Run /compress now or start /new to continue.':
|
|
1236
|
+
'コンテキストがもうすぐいっぱいです!今すぐ /compress を実行するか、/new を開始して続けてください。',
|
|
1237
|
+
'Context is getting full. Use /compress to free up space.':
|
|
1238
|
+
'コンテキストが埋まりつつあります。/compress を使って空きを増やしてください。',
|
|
1239
|
+
'Long conversation? /compress summarizes history to free context.':
|
|
1240
|
+
'会話が長くなりましたか? /compress は履歴を要約してコンテキストを空けます。',
|
|
1178
1241
|
'Tips for getting started:': '始めるためのヒント:',
|
|
1179
1242
|
'1. Ask questions, edit files, or run commands.':
|
|
1180
1243
|
'1. 質問したり、ファイルを編集したり、コマンドを実行したりできます',
|
|
@@ -1336,6 +1399,11 @@ export default {
|
|
|
1336
1399
|
// Context Usage Component
|
|
1337
1400
|
// ============================================================================
|
|
1338
1401
|
'Context Usage': 'コンテキスト使用量',
|
|
1402
|
+
'% used': '% 使用',
|
|
1403
|
+
'% context used': '% コンテキスト使用',
|
|
1404
|
+
'Context exceeds limit! Use /compress or /clear to reduce.':
|
|
1405
|
+
'コンテキストが制限を超えています!/compress または /clear を使用して減らしてください。',
|
|
1406
|
+
'Use /compress or /clear': '/compress または /clear を使用',
|
|
1339
1407
|
'No API response yet. Send a message to see actual usage.':
|
|
1340
1408
|
'API応答はありません。メッセージを送信して実際の使用量を確認してください。',
|
|
1341
1409
|
'Estimated pre-conversation overhead': '推定事前会話オーバーヘッド',
|
|
@@ -1429,16 +1497,19 @@ export default {
|
|
|
1429
1497
|
'⚠️ 認証方法が設定されていません。\n',
|
|
1430
1498
|
'Run one of the following commands to get started:\n':
|
|
1431
1499
|
'以下のコマンドのいずれかを実行して開始してください:\n',
|
|
1432
|
-
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (
|
|
1433
|
-
' qwen auth qwen-oauth - Qwen OAuth
|
|
1500
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)':
|
|
1501
|
+
' qwen auth qwen-oauth - Qwen OAuth で認証(終了)',
|
|
1434
1502
|
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n':
|
|
1435
1503
|
' qwen auth coding-plan - Alibaba Cloud Coding Plan で認証\n',
|
|
1436
1504
|
'Or simply run:': 'または以下を実行:',
|
|
1437
1505
|
' qwen auth - Interactive authentication setup\n':
|
|
1438
1506
|
' qwen auth - インタラクティブ認証セットアップ\n',
|
|
1439
1507
|
'✓ Authentication Method: Qwen OAuth': '✓ 認証方法: Qwen OAuth',
|
|
1440
|
-
' Type: Free tier
|
|
1441
|
-
|
|
1508
|
+
' Type: Free tier (discontinued 2026-04-15)':
|
|
1509
|
+
' タイプ: 無料枠(2026-04-15 終了)',
|
|
1510
|
+
' Limit: No longer available': ' 制限: 利用不可',
|
|
1511
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.':
|
|
1512
|
+
'Qwen OAuth 無料枠は 2026-04-15 に終了しました。/auth を実行して Coding Plan、OpenRouter、Fireworks AI、または他のプロバイダーに切り替えてください。',
|
|
1442
1513
|
' Models: Qwen latest models\n': ' モデル: Qwen 最新モデル\n',
|
|
1443
1514
|
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
1444
1515
|
'✓ 認証方法: Alibaba Cloud Coding Plan',
|
|
@@ -1464,6 +1535,8 @@ export default {
|
|
|
1464
1535
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1465
1536
|
'(↑ ↓ 矢印キーで移動、Enter で選択、Ctrl+C で終了)\n',
|
|
1466
1537
|
compact: 'コンパクト',
|
|
1538
|
+
'compact mode: on (Ctrl+O off)': 'コンパクトモード: オン (Ctrl+O でオフ)',
|
|
1539
|
+
'to toggle compact mode': 'コンパクトモードの切り替え',
|
|
1467
1540
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1468
1541
|
'コンパクトモードでツール出力と思考を非表示にします(Ctrl+O で切り替え)。',
|
|
1469
1542
|
'Press Ctrl+O to show full tool output': 'Ctrl+O で完全なツール出力を表示',
|
package/locales/pt.js
CHANGED
|
@@ -51,6 +51,7 @@ export default {
|
|
|
51
51
|
'to search history': 'para pesquisar no histórico',
|
|
52
52
|
'to paste images': 'para colar imagens',
|
|
53
53
|
'for external editor': 'para editor externo',
|
|
54
|
+
'to toggle compact mode': 'alternar modo compacto',
|
|
54
55
|
'Jump through words in the input': 'Pular palavras na entrada',
|
|
55
56
|
'Close dialogs, cancel requests, or quit application':
|
|
56
57
|
'Fechar diálogos, cancelar solicitações ou sair do aplicativo',
|
|
@@ -373,6 +374,8 @@ export default {
|
|
|
373
374
|
|
|
374
375
|
// Settings enum options
|
|
375
376
|
'Auto (detect from system)': 'Automático (detectar do sistema)',
|
|
377
|
+
'Auto (detect terminal theme)': 'Automático (detectar tema do terminal)',
|
|
378
|
+
Auto: 'Automático',
|
|
376
379
|
Text: 'Texto',
|
|
377
380
|
JSON: 'JSON',
|
|
378
381
|
Plan: 'Planejamento',
|
|
@@ -656,6 +659,7 @@ export default {
|
|
|
656
659
|
'User Settings': 'Configurações do Usuário',
|
|
657
660
|
'System Settings': 'Configurações do Sistema',
|
|
658
661
|
Extensions: 'Extensões',
|
|
662
|
+
'Session (temporary)': 'Sessão (temporário)',
|
|
659
663
|
// Hooks - Status
|
|
660
664
|
'✓ Enabled': '✓ Ativado',
|
|
661
665
|
'✗ Disabled': '✗ Desativado',
|
|
@@ -891,6 +895,46 @@ export default {
|
|
|
891
895
|
'Uso: /memory add [--global|--project] <texto para lembrar>',
|
|
892
896
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
893
897
|
'Tentando salvar na memória {{scope}}: "{{fact}}"',
|
|
898
|
+
'Open auto-memory folder': 'Abrir pasta de memória automática',
|
|
899
|
+
'Auto-memory: {{status}}': 'Memória automática: {{status}}',
|
|
900
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
901
|
+
'Consolidação automática: {{status}} · {{lastDream}} · /dream para executar',
|
|
902
|
+
never: 'nunca',
|
|
903
|
+
on: 'ativado',
|
|
904
|
+
off: 'desativado',
|
|
905
|
+
'❆ dreaming': '❆ consolidando',
|
|
906
|
+
'Remove matching entries from managed auto-memory.':
|
|
907
|
+
'Remover entradas correspondentes da memória automática gerenciada.',
|
|
908
|
+
'Usage: /forget <memory text to remove>':
|
|
909
|
+
'Uso: /forget <texto de memória a remover>',
|
|
910
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
911
|
+
'Nenhuma entrada de memória automática gerenciada correspondeu: {{query}}',
|
|
912
|
+
'Show managed auto-memory status.':
|
|
913
|
+
'Mostrar status da memória automática gerenciada.',
|
|
914
|
+
'Run managed auto-memory extraction for the current session.':
|
|
915
|
+
'Executar extração de memória automática gerenciada para a sessão atual.',
|
|
916
|
+
'Managed auto-memory root: {{root}}':
|
|
917
|
+
'Raiz da memória automática gerenciada: {{root}}',
|
|
918
|
+
'Managed auto-memory topics:': 'Tópicos de memória automática gerenciada:',
|
|
919
|
+
'No extraction cursor found yet.':
|
|
920
|
+
'Nenhum cursor de extração encontrado ainda.',
|
|
921
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
922
|
+
'Cursor: sessão={{sessionId}}, offset={{offset}}, atualizado={{updatedAt}}',
|
|
923
|
+
'No chat client available to extract memory.':
|
|
924
|
+
'Nenhum cliente de chat disponível para extrair memória.',
|
|
925
|
+
'Managed auto-memory extraction is already running.':
|
|
926
|
+
'A extração de memória automática gerenciada já está em execução.',
|
|
927
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
928
|
+
'A extração de memória automática gerenciada não encontrou novas memórias duráveis.',
|
|
929
|
+
'Consolidate managed auto-memory topic files.':
|
|
930
|
+
'Consolidar arquivos de tópicos de memória automática gerenciada.',
|
|
931
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
932
|
+
'A consolidação de memória automática não encontrou nada para melhorar.',
|
|
933
|
+
'Deduplicated entries: {{count}}': 'Entradas desduplicadas: {{count}}',
|
|
934
|
+
'Save a durable memory using the save_memory tool.':
|
|
935
|
+
'Salvar uma memória durável usando a ferramenta save_memory.',
|
|
936
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
937
|
+
'Uso: /remember [--global|--project] <texto a lembrar>',
|
|
894
938
|
|
|
895
939
|
// ============================================================================
|
|
896
940
|
// Commands - MCP
|
|
@@ -1251,14 +1295,22 @@ export default {
|
|
|
1251
1295
|
'Terms of Services and Privacy Notice':
|
|
1252
1296
|
'Termos de Serviço e Aviso de Privacidade',
|
|
1253
1297
|
'Qwen OAuth': 'Qwen OAuth',
|
|
1254
|
-
'
|
|
1255
|
-
'
|
|
1256
|
-
'
|
|
1257
|
-
'
|
|
1298
|
+
'Discontinued — switch to Coding Plan or API Key':
|
|
1299
|
+
'Descontinuado — mude para Coding Plan ou API Key',
|
|
1300
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch provider.':
|
|
1301
|
+
'O nível gratuito do Qwen OAuth foi descontinuado em 2026-04-15. Execute /auth para trocar de provedor.',
|
|
1302
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.':
|
|
1303
|
+
'O nível gratuito do Qwen OAuth foi descontinuado em 2026-04-15. Selecione Coding Plan ou API Key.',
|
|
1304
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.':
|
|
1305
|
+
'O nível gratuito do Qwen OAuth foi descontinuado em 2026-04-15. Por favor, selecione um modelo de outro provedor ou execute /auth para trocar.',
|
|
1306
|
+
'\n⚠ Qwen OAuth free tier was discontinued on 2026-04-15. Please select another option.\n':
|
|
1307
|
+
'\n⚠ O nível gratuito do Qwen OAuth foi descontinuado em 2026-04-15. Selecione outra opção.\n',
|
|
1258
1308
|
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
|
|
1259
1309
|
'Pago \u00B7 Até 6.000 solicitações/5 hrs \u00B7 Todos os modelos Alibaba Cloud Coding Plan',
|
|
1260
1310
|
'Alibaba Cloud Coding Plan': 'Alibaba Cloud Coding Plan',
|
|
1261
1311
|
'Bring your own API key': 'Traga sua própria chave API',
|
|
1312
|
+
'Browser-based authentication with third-party providers (e.g. OpenRouter, ModelScope)':
|
|
1313
|
+
'Autenticação baseada em navegador com provedores terceiros (por exemplo, OpenRouter, ModelScope)',
|
|
1262
1314
|
'API-KEY': 'API-KEY',
|
|
1263
1315
|
'Use coding plan credentials or your own api-keys/providers.':
|
|
1264
1316
|
'Use credenciais do Coding Plan ou suas próprias chaves API/provedores.',
|
|
@@ -1445,6 +1497,8 @@ export default {
|
|
|
1445
1497
|
'Press Ctrl+C again to exit.': 'Pressione Ctrl+C novamente para sair.',
|
|
1446
1498
|
'Press Ctrl+D again to exit.': 'Pressione Ctrl+D novamente para sair.',
|
|
1447
1499
|
'Press Esc again to clear.': 'Pressione Esc novamente para limpar.',
|
|
1500
|
+
'Press ↑ to edit queued messages':
|
|
1501
|
+
'Pressione ↑ para editar mensagens na fila',
|
|
1448
1502
|
|
|
1449
1503
|
// ============================================================================
|
|
1450
1504
|
// MCP Status
|
|
@@ -1512,6 +1566,18 @@ export default {
|
|
|
1512
1566
|
'Você pode alternar o modo de permissão rapidamente com Shift+Tab ou /approval-mode.',
|
|
1513
1567
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1514
1568
|
'Experimente /insight para gerar insights personalizados do seu histórico de conversas.',
|
|
1569
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1570
|
+
'Pressione Ctrl+O para alternar o modo compacto — ocultar saída de ferramentas e raciocínio.',
|
|
1571
|
+
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1572
|
+
'Adicione um arquivo QWEN.md para dar ao Qwen Code um contexto persistente do projeto.',
|
|
1573
|
+
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
1574
|
+
'Use /btw para fazer uma pergunta lateral rápida sem interromper a conversa.',
|
|
1575
|
+
'Context is almost full! Run /compress now or start /new to continue.':
|
|
1576
|
+
'O contexto está quase cheio! Execute /compress agora ou inicie /new para continuar.',
|
|
1577
|
+
'Context is getting full. Use /compress to free up space.':
|
|
1578
|
+
'O contexto está ficando cheio. Use /compress para liberar espaço.',
|
|
1579
|
+
'Long conversation? /compress summarizes history to free context.':
|
|
1580
|
+
'Conversa longa? /compress resume o histórico para liberar contexto.',
|
|
1515
1581
|
|
|
1516
1582
|
// ============================================================================
|
|
1517
1583
|
// Exit Screen / Stats
|
|
@@ -1830,6 +1896,11 @@ export default {
|
|
|
1830
1896
|
// Context Usage Component
|
|
1831
1897
|
// ============================================================================
|
|
1832
1898
|
'Context Usage': 'Uso do Contexto',
|
|
1899
|
+
'% used': '% usado',
|
|
1900
|
+
'% context used': '% contexto usado',
|
|
1901
|
+
'Context exceeds limit! Use /compress or /clear to reduce.':
|
|
1902
|
+
'Contexto excede o limite! Use /compress ou /clear para reduzir.',
|
|
1903
|
+
'Use /compress or /clear': 'Use /compress ou /clear',
|
|
1833
1904
|
'No API response yet. Send a message to see actual usage.':
|
|
1834
1905
|
'Ainda não há resposta da API. Envie uma mensagem para ver o uso real.',
|
|
1835
1906
|
'Estimated pre-conversation overhead': 'Sobrecarga estimada pré-conversa',
|
|
@@ -1927,16 +1998,19 @@ export default {
|
|
|
1927
1998
|
'⚠️ Nenhum método de autenticação configurado.\n',
|
|
1928
1999
|
'Run one of the following commands to get started:\n':
|
|
1929
2000
|
'Execute um dos seguintes comandos para começar:\n',
|
|
1930
|
-
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (
|
|
1931
|
-
' qwen auth qwen-oauth - Autenticar com Qwen OAuth (
|
|
2001
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)':
|
|
2002
|
+
' qwen auth qwen-oauth - Autenticar com Qwen OAuth (descontinuado)',
|
|
1932
2003
|
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n':
|
|
1933
2004
|
' qwen auth coding-plan - Autenticar com Alibaba Cloud Coding Plan\n',
|
|
1934
2005
|
'Or simply run:': 'Ou simplesmente execute:',
|
|
1935
2006
|
' qwen auth - Interactive authentication setup\n':
|
|
1936
2007
|
' qwen auth - Configuração interativa de autenticação\n',
|
|
1937
2008
|
'✓ Authentication Method: Qwen OAuth': '✓ Método de autenticação: Qwen OAuth',
|
|
1938
|
-
' Type: Free tier
|
|
1939
|
-
|
|
2009
|
+
' Type: Free tier (discontinued 2026-04-15)':
|
|
2010
|
+
' Tipo: Nível gratuito (descontinuado 2026-04-15)',
|
|
2011
|
+
' Limit: No longer available': ' Limite: Não mais disponível',
|
|
2012
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.':
|
|
2013
|
+
'O nível gratuito do Qwen OAuth foi descontinuado em 2026-04-15. Execute /auth para mudar para Coding Plan, OpenRouter, Fireworks AI ou outro provedor.',
|
|
1940
2014
|
' Models: Qwen latest models\n': ' Modelos: Modelos Qwen mais recentes\n',
|
|
1941
2015
|
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
1942
2016
|
'✓ Método de autenticação: Alibaba Cloud Coding Plan',
|
|
@@ -1962,6 +2036,7 @@ export default {
|
|
|
1962
2036
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1963
2037
|
'(Use ↑ ↓ para navegar, Enter para selecionar, Ctrl+C para sair)\n',
|
|
1964
2038
|
compact: 'compacto',
|
|
2039
|
+
'compact mode: on (Ctrl+O off)': 'modo compacto: ligado (Ctrl+O desligar)',
|
|
1965
2040
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1966
2041
|
'Ocultar saída da ferramenta e raciocínio para uma visualização mais limpa (alternar com Ctrl+O).',
|
|
1967
2042
|
'Press Ctrl+O to show full tool output':
|
package/locales/ru.js
CHANGED
|
@@ -88,6 +88,7 @@ export default {
|
|
|
88
88
|
'to search history': 'поиск в истории',
|
|
89
89
|
'to paste images': 'вставить изображения',
|
|
90
90
|
'for external editor': 'внешний редактор',
|
|
91
|
+
'to toggle compact mode': 'переключить компактный режим',
|
|
91
92
|
|
|
92
93
|
// ============================================================================
|
|
93
94
|
// Поля системной информации
|
|
@@ -368,6 +369,8 @@ export default {
|
|
|
368
369
|
'Tool Schema Compliance': 'Соответствие схеме инструмента',
|
|
369
370
|
// Варианты перечислений настроек
|
|
370
371
|
'Auto (detect from system)': 'Авто (определить из системы)',
|
|
372
|
+
'Auto (detect terminal theme)': 'Авто (определить тему терминала)',
|
|
373
|
+
Auto: 'Авто',
|
|
371
374
|
Text: 'Текст',
|
|
372
375
|
JSON: 'JSON',
|
|
373
376
|
Plan: 'План',
|
|
@@ -661,6 +664,7 @@ export default {
|
|
|
661
664
|
'User Settings': 'Пользовательские настройки',
|
|
662
665
|
'System Settings': 'Системные настройки',
|
|
663
666
|
Extensions: 'Расширения',
|
|
667
|
+
'Session (temporary)': 'Сессия (временно)',
|
|
664
668
|
// Hooks - Status
|
|
665
669
|
'✓ Enabled': '✓ Включен',
|
|
666
670
|
'✗ Disabled': '✗ Отключен',
|
|
@@ -894,6 +898,44 @@ export default {
|
|
|
894
898
|
'Использование: /memory add [--global|--project] <текст для запоминания>',
|
|
895
899
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
896
900
|
'Попытка сохранить в память {{scope}}: "{{fact}}"',
|
|
901
|
+
'Open auto-memory folder': 'Открыть папку автопамяти',
|
|
902
|
+
'Auto-memory: {{status}}': 'Автопамять: {{status}}',
|
|
903
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
904
|
+
'Автоконсолидация: {{status}} · {{lastDream}} · /dream для запуска',
|
|
905
|
+
never: 'никогда',
|
|
906
|
+
on: 'вкл',
|
|
907
|
+
off: 'выкл',
|
|
908
|
+
'❆ dreaming': '❆ консолидация',
|
|
909
|
+
'Remove matching entries from managed auto-memory.':
|
|
910
|
+
'Удалить совпадающие записи из управляемой автопамяти.',
|
|
911
|
+
'Usage: /forget <memory text to remove>':
|
|
912
|
+
'Использование: /forget <текст воспоминания для удаления>',
|
|
913
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
914
|
+
'Не найдено совпадающих записей автопамяти: {{query}}',
|
|
915
|
+
'Show managed auto-memory status.': 'Показать статус управляемой автопамяти.',
|
|
916
|
+
'Run managed auto-memory extraction for the current session.':
|
|
917
|
+
'Запустить извлечение управляемой автопамяти для текущей сессии.',
|
|
918
|
+
'Managed auto-memory root: {{root}}':
|
|
919
|
+
'Корневая директория управляемой автопамяти: {{root}}',
|
|
920
|
+
'Managed auto-memory topics:': 'Темы управляемой автопамяти:',
|
|
921
|
+
'No extraction cursor found yet.': 'Курсор извлечения ещё не найден.',
|
|
922
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
923
|
+
'Курсор: сессия={{sessionId}}, смещение={{offset}}, обновлено={{updatedAt}}',
|
|
924
|
+
'No chat client available to extract memory.':
|
|
925
|
+
'Нет доступного чат-клиента для извлечения памяти.',
|
|
926
|
+
'Managed auto-memory extraction is already running.':
|
|
927
|
+
'Извлечение управляемой автопамяти уже выполняется.',
|
|
928
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
929
|
+
'Извлечение управляемой автопамяти не нашло новых долгосрочных воспоминаний.',
|
|
930
|
+
'Consolidate managed auto-memory topic files.':
|
|
931
|
+
'Консолидировать файлы тем управляемой автопамяти.',
|
|
932
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
933
|
+
'Консолидация автопамяти не нашла чего улучшать.',
|
|
934
|
+
'Deduplicated entries: {{count}}': 'Удалено дубликатов: {{count}}',
|
|
935
|
+
'Save a durable memory using the save_memory tool.':
|
|
936
|
+
'Сохранить долгосрочную память с помощью инструмента save_memory.',
|
|
937
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
938
|
+
'Использование: /remember [--global|--project] <текст для запоминания>',
|
|
897
939
|
|
|
898
940
|
// ============================================================================
|
|
899
941
|
// Команды - MCP
|
|
@@ -1175,14 +1217,22 @@ export default {
|
|
|
1175
1217
|
'Terms of Services and Privacy Notice':
|
|
1176
1218
|
'Условия обслуживания и уведомление о конфиденциальности',
|
|
1177
1219
|
'Qwen OAuth': 'Qwen OAuth',
|
|
1178
|
-
'
|
|
1179
|
-
'
|
|
1180
|
-
'
|
|
1181
|
-
'
|
|
1220
|
+
'Discontinued — switch to Coding Plan or API Key':
|
|
1221
|
+
'Прекращено — переключитесь на Coding Plan или API Key',
|
|
1222
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch provider.':
|
|
1223
|
+
'Бесплатный уровень Qwen OAuth прекращён 2026-04-15. Выполните /auth для смены провайдера.',
|
|
1224
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.':
|
|
1225
|
+
'Бесплатный уровень Qwen OAuth прекращён 2026-04-15. Выберите Coding Plan или API Key.',
|
|
1226
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.':
|
|
1227
|
+
'Бесплатный уровень Qwen OAuth был прекращен 2026-04-15. Пожалуйста, выберите модель от другого провайдера или выполните /auth для переключения.',
|
|
1228
|
+
'\n⚠ Qwen OAuth free tier was discontinued on 2026-04-15. Please select another option.\n':
|
|
1229
|
+
'\n⚠ Бесплатный уровень Qwen OAuth прекращён 2026-04-15. Выберите другую опцию.\n',
|
|
1182
1230
|
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
|
|
1183
1231
|
'Платно \u00B7 До 6 000 запросов/5 часов \u00B7 Все модели Alibaba Cloud Coding Plan',
|
|
1184
1232
|
'Alibaba Cloud Coding Plan': 'Alibaba Cloud Coding Plan',
|
|
1185
1233
|
'Bring your own API key': 'Используйте свой API-ключ',
|
|
1234
|
+
'Browser-based authentication with third-party providers (e.g. OpenRouter, ModelScope)':
|
|
1235
|
+
'Браузерная аутентификация с использованием сторонних провайдеров (например, OpenRouter, ModelScope)',
|
|
1186
1236
|
'API-KEY': 'API-KEY',
|
|
1187
1237
|
'Use coding plan credentials or your own api-keys/providers.':
|
|
1188
1238
|
'Используйте учетные данные Coding Plan или свои собственные API-ключи/провайдеры.',
|
|
@@ -1367,6 +1417,8 @@ export default {
|
|
|
1367
1417
|
'Press Ctrl+C again to exit.': 'Нажмите Ctrl+C снова для выхода.',
|
|
1368
1418
|
'Press Ctrl+D again to exit.': 'Нажмите Ctrl+D снова для выхода.',
|
|
1369
1419
|
'Press Esc again to clear.': 'Нажмите Esc снова для очистки.',
|
|
1420
|
+
'Press ↑ to edit queued messages':
|
|
1421
|
+
'Нажмите ↑ для редактирования сообщений в очереди',
|
|
1370
1422
|
|
|
1371
1423
|
// ============================================================================
|
|
1372
1424
|
// Статус MCP
|
|
@@ -1706,6 +1758,18 @@ export default {
|
|
|
1706
1758
|
'Вы можете быстро переключать режим разрешений с помощью Tab или /approval-mode.',
|
|
1707
1759
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1708
1760
|
'Попробуйте /insight, чтобы получить персонализированные выводы из истории чатов.',
|
|
1761
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1762
|
+
'Нажмите Ctrl+O для переключения компактного режима — скрыть вывод инструментов и рассуждения.',
|
|
1763
|
+
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1764
|
+
'Добавьте файл QWEN.md, чтобы предоставить Qwen Code постоянный контекст проекта.',
|
|
1765
|
+
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
1766
|
+
'Используйте /btw, чтобы задать короткий побочный вопрос, не прерывая основной разговор.',
|
|
1767
|
+
'Context is almost full! Run /compress now or start /new to continue.':
|
|
1768
|
+
'Контекст почти заполнен! Выполните /compress сейчас или начните /new, чтобы продолжить.',
|
|
1769
|
+
'Context is getting full. Use /compress to free up space.':
|
|
1770
|
+
'Контекст заполняется. Используйте /compress, чтобы освободить место.',
|
|
1771
|
+
'Long conversation? /compress summarizes history to free context.':
|
|
1772
|
+
'Долгий разговор? /compress подведёт итог истории, чтобы освободить контекст.',
|
|
1709
1773
|
|
|
1710
1774
|
// ============================================================================
|
|
1711
1775
|
// Custom API Key Configuration
|
|
@@ -1763,6 +1827,11 @@ export default {
|
|
|
1763
1827
|
// Context Usage Component
|
|
1764
1828
|
// ============================================================================
|
|
1765
1829
|
'Context Usage': 'Использование контекста',
|
|
1830
|
+
'% used': '% использовано',
|
|
1831
|
+
'% context used': '% контекста использовано',
|
|
1832
|
+
'Context exceeds limit! Use /compress or /clear to reduce.':
|
|
1833
|
+
'Контекст превышает лимит! Используйте /compress или /clear для уменьшения.',
|
|
1834
|
+
'Use /compress or /clear': 'Используйте /compress или /clear',
|
|
1766
1835
|
'No API response yet. Send a message to see actual usage.':
|
|
1767
1836
|
'Пока нет ответа от API. Отправьте сообщение, чтобы увидеть фактическое использование.',
|
|
1768
1837
|
'Estimated pre-conversation overhead':
|
|
@@ -1934,16 +2003,19 @@ export default {
|
|
|
1934
2003
|
'⚠️ Метод аутентификации не настроен.\n',
|
|
1935
2004
|
'Run one of the following commands to get started:\n':
|
|
1936
2005
|
'Выполните одну из следующих команд для начала:\n',
|
|
1937
|
-
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (
|
|
1938
|
-
' qwen auth qwen-oauth - Аутентификация через Qwen OAuth (
|
|
2006
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)':
|
|
2007
|
+
' qwen auth qwen-oauth - Аутентификация через Qwen OAuth (прекращено)',
|
|
1939
2008
|
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n':
|
|
1940
2009
|
' qwen auth coding-plan - Аутентификация через Alibaba Cloud Coding Plan\n',
|
|
1941
2010
|
'Or simply run:': 'Или просто выполните:',
|
|
1942
2011
|
' qwen auth - Interactive authentication setup\n':
|
|
1943
2012
|
' qwen auth - Интерактивная настройка аутентификации\n',
|
|
1944
2013
|
'✓ Authentication Method: Qwen OAuth': '✓ Метод аутентификации: Qwen OAuth',
|
|
1945
|
-
' Type: Free tier
|
|
1946
|
-
|
|
2014
|
+
' Type: Free tier (discontinued 2026-04-15)':
|
|
2015
|
+
' Тип: Бесплатный уровень (прекращено 2026-04-15)',
|
|
2016
|
+
' Limit: No longer available': ' Лимит: Больше не доступен',
|
|
2017
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.':
|
|
2018
|
+
'Бесплатный уровень Qwen OAuth прекращён 2026-04-15. Выполните /auth для переключения на Coding Plan, OpenRouter, Fireworks AI или другого провайдера.',
|
|
1947
2019
|
' Models: Qwen latest models\n': ' Модели: Последние модели Qwen\n',
|
|
1948
2020
|
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
1949
2021
|
'✓ Метод аутентификации: Alibaba Cloud Coding Plan',
|
|
@@ -1969,6 +2041,7 @@ export default {
|
|
|
1969
2041
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1970
2042
|
'(↑ ↓ стрелки для навигации, Enter для выбора, Ctrl+C для выхода)\n',
|
|
1971
2043
|
compact: 'компактный',
|
|
2044
|
+
'compact mode: on (Ctrl+O off)': 'компактный режим: вкл (Ctrl+O выкл)',
|
|
1972
2045
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1973
2046
|
'Скрывать вывод инструментов и процесс рассуждений для более чистого вида (переключить с помощью Ctrl+O).',
|
|
1974
2047
|
'Press Ctrl+O to show full tool output':
|