@mmmbuto/qwen-code-termux 0.14.1-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 +173 -108
- package/bundled/qc-helper/docs/features/_meta.ts +6 -0
- package/bundled/qc-helper/docs/features/approval-mode.md +16 -8
- package/bundled/qc-helper/docs/features/arena.md +3 -2
- package/bundled/qc-helper/docs/features/code-review.md +279 -0
- package/bundled/qc-helper/docs/features/commands.md +96 -26
- package/bundled/qc-helper/docs/features/dual-output.md +593 -0
- package/bundled/qc-helper/docs/features/followup-suggestions.md +6 -6
- 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 +261 -0
- 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/reference/keyboard-shortcuts.md +1 -1
- package/bundled/qc-helper/docs/support/tos-privacy.md +1 -1
- package/bundled/qc-helper/docs/support/troubleshooting.md +9 -3
- package/bundled/review/DESIGN.md +165 -0
- package/bundled/review/SKILL.md +359 -88
- package/cli.js +296184 -260145
- package/locales/ca.js +2143 -0
- package/locales/de.js +104 -14
- package/locales/en.js +113 -13
- package/locales/fr.js +2099 -0
- package/locales/ja.js +103 -14
- package/locales/pt.js +105 -14
- package/locales/ru.js +103 -14
- package/locales/zh-TW.js +1678 -0
- package/locales/zh.js +110 -13
- 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サーバーで認証',
|
|
@@ -743,9 +785,10 @@ export default {
|
|
|
743
785
|
'Failed to generate summary - no text content received from LLM response':
|
|
744
786
|
'サマリーの生成に失敗 - LLMレスポンスからテキストコンテンツを受信できませんでした',
|
|
745
787
|
// Model
|
|
746
|
-
'Switch the model for this session':
|
|
747
|
-
|
|
748
|
-
|
|
788
|
+
'Switch the model for this session (--fast for suggestion model)':
|
|
789
|
+
'このセッションのモデルを切り替え(--fast で提案モデルを設定)',
|
|
790
|
+
'Set a lighter model for prompt suggestions and speculative execution':
|
|
791
|
+
'プロンプト提案と投機的実行用の軽量モデルを設定',
|
|
749
792
|
'Content generator configuration not available.':
|
|
750
793
|
'コンテンツジェネレーター設定が利用できません',
|
|
751
794
|
'Authentication type not available.': '認証タイプが利用できません',
|
|
@@ -918,6 +961,8 @@ export default {
|
|
|
918
961
|
'このプロジェクトで{{action}}を常に許可',
|
|
919
962
|
'Always allow for this user': 'このユーザーに常に許可',
|
|
920
963
|
'Always allow {{action}} for this user': 'このユーザーに{{action}}を常に許可',
|
|
964
|
+
'Yes, restore previous mode ({{mode}})':
|
|
965
|
+
'はい、以前のモードに戻す ({{mode}})',
|
|
921
966
|
'Yes, and auto-accept edits': 'はい、編集を自動承認',
|
|
922
967
|
'Yes, and manually approve edits': 'はい、編集を手動承認',
|
|
923
968
|
'No, keep planning (esc)': 'いいえ、計画を続ける (Esc)',
|
|
@@ -963,14 +1008,22 @@ export default {
|
|
|
963
1008
|
'続行するには認証方法を選択してください。Ctrl+C をもう一度押すと終了します',
|
|
964
1009
|
'Terms of Services and Privacy Notice': '利用規約とプライバシー通知',
|
|
965
1010
|
'Qwen OAuth': 'Qwen OAuth',
|
|
966
|
-
'
|
|
967
|
-
'
|
|
968
|
-
'
|
|
969
|
-
'
|
|
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',
|
|
970
1021
|
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
|
|
971
1022
|
'有料 \u00B7 5時間最大6,000リクエスト \u00B7 すべての Alibaba Cloud Coding Plan モデル',
|
|
972
1023
|
'Alibaba Cloud Coding Plan': 'Alibaba Cloud Coding Plan',
|
|
973
1024
|
'Bring your own API key': '自分のAPIキーを使用',
|
|
1025
|
+
'Browser-based authentication with third-party providers (e.g. OpenRouter, ModelScope)':
|
|
1026
|
+
'サードパーティプロバイダーによるブラウザベースの認証(例:OpenRouter、ModelScope)',
|
|
974
1027
|
'API-KEY': 'API-KEY',
|
|
975
1028
|
'Use coding plan credentials or your own api-keys/providers.':
|
|
976
1029
|
'Coding Planの認証情報またはご自身のAPIキー/プロバイダーをご利用ください。',
|
|
@@ -1120,6 +1173,7 @@ export default {
|
|
|
1120
1173
|
'Press Ctrl+C again to exit.': 'Ctrl+C をもう一度押すと終了します',
|
|
1121
1174
|
'Press Ctrl+D again to exit.': 'Ctrl+D をもう一度押すと終了します',
|
|
1122
1175
|
'Press Esc again to clear.': 'Esc をもう一度押すとクリアします',
|
|
1176
|
+
'Press ↑ to edit queued messages': '↑ を押してキュー内のメッセージを編集',
|
|
1123
1177
|
// MCP Status
|
|
1124
1178
|
'⏳ MCP servers are starting up ({{count}} initializing)...':
|
|
1125
1179
|
'⏳ MCPサーバーを起動中({{count}} 初期化中)...',
|
|
@@ -1172,6 +1226,18 @@ export default {
|
|
|
1172
1226
|
'Tab または /approval-mode で権限モードをすばやく切り替えられます。',
|
|
1173
1227
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1174
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 は履歴を要約してコンテキストを空けます。',
|
|
1175
1241
|
'Tips for getting started:': '始めるためのヒント:',
|
|
1176
1242
|
'1. Ask questions, edit files, or run commands.':
|
|
1177
1243
|
'1. 質問したり、ファイルを編集したり、コマンドを実行したりできます',
|
|
@@ -1333,6 +1399,11 @@ export default {
|
|
|
1333
1399
|
// Context Usage Component
|
|
1334
1400
|
// ============================================================================
|
|
1335
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 を使用',
|
|
1336
1407
|
'No API response yet. Send a message to see actual usage.':
|
|
1337
1408
|
'API応答はありません。メッセージを送信して実際の使用量を確認してください。',
|
|
1338
1409
|
'Estimated pre-conversation overhead': '推定事前会話オーバーヘッド',
|
|
@@ -1426,16 +1497,19 @@ export default {
|
|
|
1426
1497
|
'⚠️ 認証方法が設定されていません。\n',
|
|
1427
1498
|
'Run one of the following commands to get started:\n':
|
|
1428
1499
|
'以下のコマンドのいずれかを実行して開始してください:\n',
|
|
1429
|
-
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (
|
|
1430
|
-
' qwen auth qwen-oauth - Qwen OAuth
|
|
1500
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)':
|
|
1501
|
+
' qwen auth qwen-oauth - Qwen OAuth で認証(終了)',
|
|
1431
1502
|
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n':
|
|
1432
1503
|
' qwen auth coding-plan - Alibaba Cloud Coding Plan で認証\n',
|
|
1433
1504
|
'Or simply run:': 'または以下を実行:',
|
|
1434
1505
|
' qwen auth - Interactive authentication setup\n':
|
|
1435
1506
|
' qwen auth - インタラクティブ認証セットアップ\n',
|
|
1436
1507
|
'✓ Authentication Method: Qwen OAuth': '✓ 認証方法: Qwen OAuth',
|
|
1437
|
-
' Type: Free tier
|
|
1438
|
-
|
|
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、または他のプロバイダーに切り替えてください。',
|
|
1439
1513
|
' Models: Qwen latest models\n': ' モデル: Qwen 最新モデル\n',
|
|
1440
1514
|
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
1441
1515
|
'✓ 認証方法: Alibaba Cloud Coding Plan',
|
|
@@ -1460,8 +1534,23 @@ export default {
|
|
|
1460
1534
|
'Rawモードが利用できません。インタラクティブターミナルで実行してください。',
|
|
1461
1535
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1462
1536
|
'(↑ ↓ 矢印キーで移動、Enter で選択、Ctrl+C で終了)\n',
|
|
1463
|
-
|
|
1464
|
-
'
|
|
1465
|
-
|
|
1537
|
+
compact: 'コンパクト',
|
|
1538
|
+
'compact mode: on (Ctrl+O off)': 'コンパクトモード: オン (Ctrl+O でオフ)',
|
|
1539
|
+
'to toggle compact mode': 'コンパクトモードの切り替え',
|
|
1540
|
+
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1541
|
+
'コンパクトモードでツール出力と思考を非表示にします(Ctrl+O で切り替え)。',
|
|
1466
1542
|
'Press Ctrl+O to show full tool output': 'Ctrl+O で完全なツール出力を表示',
|
|
1543
|
+
|
|
1544
|
+
'Switch to plan mode or exit plan mode':
|
|
1545
|
+
'Switch to plan mode or exit plan mode',
|
|
1546
|
+
'Exited plan mode. Previous approval mode restored.':
|
|
1547
|
+
'Exited plan mode. Previous approval mode restored.',
|
|
1548
|
+
'Enabled plan mode. The agent will analyze and plan without executing tools.':
|
|
1549
|
+
'Enabled plan mode. The agent will analyze and plan without executing tools.',
|
|
1550
|
+
'Already in plan mode. Use "/plan exit" to exit plan mode.':
|
|
1551
|
+
'Already in plan mode. Use "/plan exit" to exit plan mode.',
|
|
1552
|
+
'Not in plan mode. Use "/plan" to enter plan mode first.':
|
|
1553
|
+
'Not in plan mode. Use "/plan" to enter plan mode first.',
|
|
1554
|
+
|
|
1555
|
+
"Set up Qwen Code's status line UI": "Set up Qwen Code's status line UI",
|
|
1467
1556
|
};
|
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
|
|
@@ -996,9 +1040,10 @@ export default {
|
|
|
996
1040
|
// ============================================================================
|
|
997
1041
|
// Commands - Model
|
|
998
1042
|
// ============================================================================
|
|
999
|
-
'Switch the model for this session
|
|
1000
|
-
|
|
1001
|
-
|
|
1043
|
+
'Switch the model for this session (--fast for suggestion model)':
|
|
1044
|
+
'Trocar o modelo para esta sessão (--fast para modelo de sugestões)',
|
|
1045
|
+
'Set a lighter model for prompt suggestions and speculative execution':
|
|
1046
|
+
'Definir modelo mais leve para sugestões de prompt e execução especulativa',
|
|
1002
1047
|
'Content generator configuration not available.':
|
|
1003
1048
|
'Configuração do gerador de conteúdo não disponível.',
|
|
1004
1049
|
'Authentication type not available.': 'Tipo de autenticação não disponível.',
|
|
@@ -1190,6 +1235,8 @@ export default {
|
|
|
1190
1235
|
'Always allow for this user': 'Sempre permitir para este usuário',
|
|
1191
1236
|
'Always allow {{action}} for this user':
|
|
1192
1237
|
'Sempre permitir {{action}} para este usuário',
|
|
1238
|
+
'Yes, restore previous mode ({{mode}})':
|
|
1239
|
+
'Sim, restaurar modo anterior ({{mode}})',
|
|
1193
1240
|
'Yes, and auto-accept edits': 'Sim, e aceitar edições automaticamente',
|
|
1194
1241
|
'Yes, and manually approve edits': 'Sim, e aprovar edições manualmente',
|
|
1195
1242
|
'No, keep planning (esc)': 'Não, continuar planejando (esc)',
|
|
@@ -1248,14 +1295,22 @@ export default {
|
|
|
1248
1295
|
'Terms of Services and Privacy Notice':
|
|
1249
1296
|
'Termos de Serviço e Aviso de Privacidade',
|
|
1250
1297
|
'Qwen OAuth': 'Qwen OAuth',
|
|
1251
|
-
'
|
|
1252
|
-
'
|
|
1253
|
-
'
|
|
1254
|
-
'
|
|
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',
|
|
1255
1308
|
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
|
|
1256
1309
|
'Pago \u00B7 Até 6.000 solicitações/5 hrs \u00B7 Todos os modelos Alibaba Cloud Coding Plan',
|
|
1257
1310
|
'Alibaba Cloud Coding Plan': 'Alibaba Cloud Coding Plan',
|
|
1258
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)',
|
|
1259
1314
|
'API-KEY': 'API-KEY',
|
|
1260
1315
|
'Use coding plan credentials or your own api-keys/providers.':
|
|
1261
1316
|
'Use credenciais do Coding Plan ou suas próprias chaves API/provedores.',
|
|
@@ -1442,6 +1497,8 @@ export default {
|
|
|
1442
1497
|
'Press Ctrl+C again to exit.': 'Pressione Ctrl+C novamente para sair.',
|
|
1443
1498
|
'Press Ctrl+D again to exit.': 'Pressione Ctrl+D novamente para sair.',
|
|
1444
1499
|
'Press Esc again to clear.': 'Pressione Esc novamente para limpar.',
|
|
1500
|
+
'Press ↑ to edit queued messages':
|
|
1501
|
+
'Pressione ↑ para editar mensagens na fila',
|
|
1445
1502
|
|
|
1446
1503
|
// ============================================================================
|
|
1447
1504
|
// MCP Status
|
|
@@ -1509,6 +1566,18 @@ export default {
|
|
|
1509
1566
|
'Você pode alternar o modo de permissão rapidamente com Shift+Tab ou /approval-mode.',
|
|
1510
1567
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1511
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.',
|
|
1512
1581
|
|
|
1513
1582
|
// ============================================================================
|
|
1514
1583
|
// Exit Screen / Stats
|
|
@@ -1827,6 +1896,11 @@ export default {
|
|
|
1827
1896
|
// Context Usage Component
|
|
1828
1897
|
// ============================================================================
|
|
1829
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',
|
|
1830
1904
|
'No API response yet. Send a message to see actual usage.':
|
|
1831
1905
|
'Ainda não há resposta da API. Envie uma mensagem para ver o uso real.',
|
|
1832
1906
|
'Estimated pre-conversation overhead': 'Sobrecarga estimada pré-conversa',
|
|
@@ -1924,16 +1998,19 @@ export default {
|
|
|
1924
1998
|
'⚠️ Nenhum método de autenticação configurado.\n',
|
|
1925
1999
|
'Run one of the following commands to get started:\n':
|
|
1926
2000
|
'Execute um dos seguintes comandos para começar:\n',
|
|
1927
|
-
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (
|
|
1928
|
-
' 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)',
|
|
1929
2003
|
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n':
|
|
1930
2004
|
' qwen auth coding-plan - Autenticar com Alibaba Cloud Coding Plan\n',
|
|
1931
2005
|
'Or simply run:': 'Ou simplesmente execute:',
|
|
1932
2006
|
' qwen auth - Interactive authentication setup\n':
|
|
1933
2007
|
' qwen auth - Configuração interativa de autenticação\n',
|
|
1934
2008
|
'✓ Authentication Method: Qwen OAuth': '✓ Método de autenticação: Qwen OAuth',
|
|
1935
|
-
' Type: Free tier
|
|
1936
|
-
|
|
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.',
|
|
1937
2014
|
' Models: Qwen latest models\n': ' Modelos: Modelos Qwen mais recentes\n',
|
|
1938
2015
|
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
1939
2016
|
'✓ Método de autenticação: Alibaba Cloud Coding Plan',
|
|
@@ -1958,9 +2035,23 @@ export default {
|
|
|
1958
2035
|
'Modo raw não disponível. Execute em um terminal interativo.',
|
|
1959
2036
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1960
2037
|
'(Use ↑ ↓ para navegar, Enter para selecionar, Ctrl+C para sair)\n',
|
|
1961
|
-
|
|
1962
|
-
'
|
|
1963
|
-
|
|
2038
|
+
compact: 'compacto',
|
|
2039
|
+
'compact mode: on (Ctrl+O off)': 'modo compacto: ligado (Ctrl+O desligar)',
|
|
2040
|
+
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
2041
|
+
'Ocultar saída da ferramenta e raciocínio para uma visualização mais limpa (alternar com Ctrl+O).',
|
|
1964
2042
|
'Press Ctrl+O to show full tool output':
|
|
1965
2043
|
'Pressione Ctrl+O para exibir a saída completa da ferramenta',
|
|
2044
|
+
|
|
2045
|
+
'Switch to plan mode or exit plan mode':
|
|
2046
|
+
'Switch to plan mode or exit plan mode',
|
|
2047
|
+
'Exited plan mode. Previous approval mode restored.':
|
|
2048
|
+
'Exited plan mode. Previous approval mode restored.',
|
|
2049
|
+
'Enabled plan mode. The agent will analyze and plan without executing tools.':
|
|
2050
|
+
'Enabled plan mode. The agent will analyze and plan without executing tools.',
|
|
2051
|
+
'Already in plan mode. Use "/plan exit" to exit plan mode.':
|
|
2052
|
+
'Already in plan mode. Use "/plan exit" to exit plan mode.',
|
|
2053
|
+
'Not in plan mode. Use "/plan" to enter plan mode first.':
|
|
2054
|
+
'Not in plan mode. Use "/plan" to enter plan mode first.',
|
|
2055
|
+
|
|
2056
|
+
"Set up Qwen Code's status line UI": "Set up Qwen Code's status line UI",
|
|
1966
2057
|
};
|