@qwen-code/qwen-code 0.15.11 → 0.15.12-preview.1
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 +16 -1
- package/bundled/qc-helper/docs/_meta.ts +2 -1
- package/bundled/qc-helper/docs/configuration/settings.md +6 -1
- package/bundled/qc-helper/docs/features/commands.md +5 -6
- package/bundled/qc-helper/docs/features/hooks.md +299 -1
- package/bundled/qc-helper/docs/features/language.md +23 -16
- package/bundled/qc-helper/docs/features/mcp.md +56 -0
- package/bundled/qc-helper/docs/qwen-serve.md +276 -0
- package/cli.js +46120 -27027
- package/locales/ca.js +0 -20
- package/locales/de.js +14 -19
- package/locales/en.js +13 -19
- package/locales/fr.js +13 -19
- package/locales/ja.js +12 -19
- package/locales/pt.js +13 -19
- package/locales/ru.js +13 -19
- package/locales/zh-TW.js +159 -164
- package/locales/zh.js +17 -24
- package/package.json +2 -2
package/locales/ca.js
CHANGED
|
@@ -1809,26 +1809,6 @@ export default {
|
|
|
1809
1809
|
'Loading suggestions...': "S'estan carregant els suggeriments...",
|
|
1810
1810
|
'Show per-item context usage breakdown.':
|
|
1811
1811
|
"Mostrar el desglossament de l'ús del context per element.",
|
|
1812
|
-
'Manage dynamic translation cache':
|
|
1813
|
-
'Gestionar la memòria cau de traducció dinàmica',
|
|
1814
|
-
'Re-translate currently loaded dynamic slash descriptions for the current UI language':
|
|
1815
|
-
"Retraduir les descripcions de les ordres de barra dinàmiques carregades per a l'idioma de la interfície actual",
|
|
1816
|
-
'Clear cached translations for the current UI language':
|
|
1817
|
-
"Esborrar les traduccions emmagatzemades a la memòria cau per a l'idioma de la interfície actual",
|
|
1818
|
-
'Manage AI translation for dynamic slash command descriptions':
|
|
1819
|
-
"Gestionar la traducció amb IA de les descripcions dinàmiques d'ordres slash",
|
|
1820
|
-
'Enable AI translation for dynamic slash command descriptions':
|
|
1821
|
-
"Activar la traducció amb IA de les descripcions dinàmiques d'ordres slash",
|
|
1822
|
-
'Disable AI translation for dynamic slash command descriptions':
|
|
1823
|
-
"Desactivar la traducció amb IA de les descripcions dinàmiques d'ordres slash",
|
|
1824
|
-
'Show AI translation status for dynamic slash command descriptions':
|
|
1825
|
-
"Mostrar l'estat de la traducció amb IA de les descripcions dinàmiques d'ordres slash",
|
|
1826
|
-
'AI translation for dynamic slash command descriptions is {{status}}.':
|
|
1827
|
-
"La traducció amb IA de les descripcions dinàmiques d'ordres slash està {{status}}.",
|
|
1828
|
-
'AI translation for dynamic slash command descriptions is now enabled.':
|
|
1829
|
-
"La traducció amb IA de les descripcions dinàmiques d'ordres slash ara està activada.",
|
|
1830
|
-
'AI translation for dynamic slash command descriptions is now disabled.':
|
|
1831
|
-
"La traducció amb IA de les descripcions dinàmiques d'ordres slash ara està desactivada.",
|
|
1832
1812
|
'Lock release warning': "Avís d'alliberament del bloqueig",
|
|
1833
1813
|
'Metadata write warning': "Avís d'escriptura de metadades",
|
|
1834
1814
|
"Subsequent dreams may be skipped as locked until the next session's staleness sweep cleans the file.":
|
package/locales/de.js
CHANGED
|
@@ -625,6 +625,10 @@ export default {
|
|
|
625
625
|
'When a session is ending': 'Wenn eine Sitzung endet',
|
|
626
626
|
'When a permission dialog is displayed':
|
|
627
627
|
'Wenn ein Berechtigungsdialog angezeigt wird',
|
|
628
|
+
'When a new todo item is created':
|
|
629
|
+
'Wenn ein neues Todo-Element erstellt wird',
|
|
630
|
+
'When a todo item is marked as completed':
|
|
631
|
+
'Wenn ein Todo-Element als erledigt markiert wird',
|
|
628
632
|
// Hooks - Event Descriptions (detailed)
|
|
629
633
|
'Input to command is JSON of tool call arguments.':
|
|
630
634
|
'Die Eingabe an den Befehl ist JSON der Tool-Aufruf-Argumente.',
|
|
@@ -648,6 +652,10 @@ export default {
|
|
|
648
652
|
'Die Eingabe an den Befehl ist JSON mit Komprimierungsdetails.',
|
|
649
653
|
'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.':
|
|
650
654
|
'Die Eingabe an den Befehl ist JSON mit tool_name, tool_input und tool_use_id. Ausgabe ist JSON mit hookSpecificOutput, das die Entscheidung zum Zulassen oder Ablehnen enthält.',
|
|
655
|
+
'Input to command is JSON with todo_id, todo_content, todo_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
656
|
+
'Die Eingabe an den Befehl ist JSON mit todo_id, todo_content, todo_status, all_todos und phase. In validation ist die Ausgabe JSON mit decision (allow/block/deny) und reason. In postWrite wird block/deny ignoriert.',
|
|
657
|
+
'Input to command is JSON with todo_id, todo_content, previous_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
658
|
+
'Die Eingabe an den Befehl ist JSON mit todo_id, todo_content, previous_status, all_todos und phase. In validation ist die Ausgabe JSON mit decision (allow/block/deny) und reason. In postWrite wird block/deny ignoriert.',
|
|
651
659
|
// Hooks - Exit Code Descriptions
|
|
652
660
|
'stdout/stderr not shown': 'stdout/stderr nicht angezeigt',
|
|
653
661
|
'show stderr to model and continue conversation':
|
|
@@ -674,6 +682,12 @@ export default {
|
|
|
674
682
|
'stderr nur dem Benutzer anzeigen, aber mit Komprimierung fortfahren',
|
|
675
683
|
'use hook decision if provided':
|
|
676
684
|
'Hook-Entscheidung verwenden, falls bereitgestellt',
|
|
685
|
+
'allow todo creation': 'Todo-Erstellung zulassen',
|
|
686
|
+
'block todo creation and show reason to model':
|
|
687
|
+
'Todo-Erstellung blockieren und Grund dem Modell anzeigen',
|
|
688
|
+
'allow todo completion': 'Todo-Abschluss zulassen',
|
|
689
|
+
'block todo completion and show reason to model':
|
|
690
|
+
'Todo-Abschluss blockieren und Grund dem Modell anzeigen',
|
|
677
691
|
// Hooks - Messages
|
|
678
692
|
'Config not loaded.': 'Konfiguration nicht geladen.',
|
|
679
693
|
'Hooks are not enabled. Enable hooks in settings to use this feature.':
|
|
@@ -1697,7 +1711,6 @@ export default {
|
|
|
1697
1711
|
'Open MCP management dialog': 'MCP-Verwaltungsdialog öffnen',
|
|
1698
1712
|
'Manage extension settings': 'Erweiterungseinstellungen verwalten',
|
|
1699
1713
|
prompts: 'Eingabeaufforderungen',
|
|
1700
|
-
'Manage dynamic translation cache': 'Dynamischen Übersetzungscache verwalten',
|
|
1701
1714
|
'Manage Extensions': 'Erweiterungen verwalten',
|
|
1702
1715
|
'Extension Details': 'Erweiterungsdetails',
|
|
1703
1716
|
'View Extension': 'Erweiterung anzeigen',
|
|
@@ -1746,24 +1759,6 @@ export default {
|
|
|
1746
1759
|
'update available': 'Update verfügbar',
|
|
1747
1760
|
'checking...': 'wird geprüft...',
|
|
1748
1761
|
'not updatable': 'nicht aktualisierbar',
|
|
1749
|
-
'Re-translate currently loaded dynamic slash descriptions for the current UI language':
|
|
1750
|
-
'Derzeit geladene dynamische Slash-Befehlsbeschreibungen für die aktuelle UI-Sprache neu übersetzen',
|
|
1751
|
-
'Clear cached translations for the current UI language':
|
|
1752
|
-
'Cache-Übersetzungen für die aktuelle UI-Sprache löschen',
|
|
1753
|
-
'Manage AI translation for dynamic slash command descriptions':
|
|
1754
|
-
'KI-Übersetzung für dynamische Slash-Befehlsbeschreibungen verwalten',
|
|
1755
|
-
'Enable AI translation for dynamic slash command descriptions':
|
|
1756
|
-
'KI-Übersetzung für dynamische Slash-Befehlsbeschreibungen aktivieren',
|
|
1757
|
-
'Disable AI translation for dynamic slash command descriptions':
|
|
1758
|
-
'KI-Übersetzung für dynamische Slash-Befehlsbeschreibungen deaktivieren',
|
|
1759
|
-
'Show AI translation status for dynamic slash command descriptions':
|
|
1760
|
-
'KI-Übersetzungsstatus für dynamische Slash-Befehlsbeschreibungen anzeigen',
|
|
1761
|
-
'AI translation for dynamic slash command descriptions is {{status}}.':
|
|
1762
|
-
'KI-Übersetzung für dynamische Slash-Befehlsbeschreibungen ist {{status}}.',
|
|
1763
|
-
'AI translation for dynamic slash command descriptions is now enabled.':
|
|
1764
|
-
'KI-Übersetzung für dynamische Slash-Befehlsbeschreibungen ist jetzt aktiviert.',
|
|
1765
|
-
'AI translation for dynamic slash command descriptions is now disabled.':
|
|
1766
|
-
'KI-Übersetzung für dynamische Slash-Befehlsbeschreibungen ist jetzt deaktiviert.',
|
|
1767
1762
|
'Ask a quick side question without affecting the main conversation':
|
|
1768
1763
|
'Eine kurze Nebenfrage stellen, ohne die Hauptunterhaltung zu beeinflussen',
|
|
1769
1764
|
'Manage Arena sessions': 'Arena-Sitzungen verwalten',
|
package/locales/en.js
CHANGED
|
@@ -713,6 +713,9 @@ export default {
|
|
|
713
713
|
'When a session is ending': 'When a session is ending',
|
|
714
714
|
'When a permission dialog is displayed':
|
|
715
715
|
'When a permission dialog is displayed',
|
|
716
|
+
'When a new todo item is created': 'When a new todo item is created',
|
|
717
|
+
'When a todo item is marked as completed':
|
|
718
|
+
'When a todo item is marked as completed',
|
|
716
719
|
// Hooks - Event Descriptions (detailed)
|
|
717
720
|
'Input to command is JSON of tool call arguments.':
|
|
718
721
|
'Input to command is JSON of tool call arguments.',
|
|
@@ -736,6 +739,10 @@ export default {
|
|
|
736
739
|
'Input to command is JSON with compaction details.',
|
|
737
740
|
'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.':
|
|
738
741
|
'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.',
|
|
742
|
+
'Input to command is JSON with todo_id, todo_content, todo_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
743
|
+
'Input to command is JSON with todo_id, todo_content, todo_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.',
|
|
744
|
+
'Input to command is JSON with todo_id, todo_content, previous_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
745
|
+
'Input to command is JSON with todo_id, todo_content, previous_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.',
|
|
739
746
|
// Hooks - Exit Code Descriptions
|
|
740
747
|
'stdout/stderr not shown': 'stdout/stderr not shown',
|
|
741
748
|
'show stderr to model and continue conversation':
|
|
@@ -761,6 +768,12 @@ export default {
|
|
|
761
768
|
'show stderr to user only but continue with compaction':
|
|
762
769
|
'show stderr to user only but continue with compaction',
|
|
763
770
|
'use hook decision if provided': 'use hook decision if provided',
|
|
771
|
+
'allow todo creation': 'allow todo creation',
|
|
772
|
+
'block todo creation and show reason to model':
|
|
773
|
+
'block todo creation and show reason to model',
|
|
774
|
+
'allow todo completion': 'allow todo completion',
|
|
775
|
+
'block todo completion and show reason to model':
|
|
776
|
+
'block todo completion and show reason to model',
|
|
764
777
|
// Hooks - Messages
|
|
765
778
|
'Config not loaded.': 'Config not loaded.',
|
|
766
779
|
'Hooks are not enabled. Enable hooks in settings to use this feature.':
|
|
@@ -812,25 +825,6 @@ export default {
|
|
|
812
825
|
'Set LLM output language': 'Set LLM output language',
|
|
813
826
|
'Usage: /language ui [{{options}}]': 'Usage: /language ui [{{options}}]',
|
|
814
827
|
'Usage: /language output <language>': 'Usage: /language output <language>',
|
|
815
|
-
'Manage dynamic translation cache': 'Manage dynamic translation cache',
|
|
816
|
-
'Re-translate currently loaded dynamic slash descriptions for the current UI language':
|
|
817
|
-
'Re-translate currently loaded dynamic slash descriptions for the current UI language',
|
|
818
|
-
'Clear cached translations for the current UI language':
|
|
819
|
-
'Clear cached translations for the current UI language',
|
|
820
|
-
'Manage AI translation for dynamic slash command descriptions':
|
|
821
|
-
'Manage AI translation for dynamic slash command descriptions',
|
|
822
|
-
'Enable AI translation for dynamic slash command descriptions':
|
|
823
|
-
'Enable AI translation for dynamic slash command descriptions',
|
|
824
|
-
'Disable AI translation for dynamic slash command descriptions':
|
|
825
|
-
'Disable AI translation for dynamic slash command descriptions',
|
|
826
|
-
'Show AI translation status for dynamic slash command descriptions':
|
|
827
|
-
'Show AI translation status for dynamic slash command descriptions',
|
|
828
|
-
'AI translation for dynamic slash command descriptions is {{status}}.':
|
|
829
|
-
'AI translation for dynamic slash command descriptions is {{status}}.',
|
|
830
|
-
'AI translation for dynamic slash command descriptions is now enabled.':
|
|
831
|
-
'AI translation for dynamic slash command descriptions is now enabled.',
|
|
832
|
-
'AI translation for dynamic slash command descriptions is now disabled.':
|
|
833
|
-
'AI translation for dynamic slash command descriptions is now disabled.',
|
|
834
828
|
'Example: /language output 中文': 'Example: /language output 中文',
|
|
835
829
|
'Example: /language output English': 'Example: /language output English',
|
|
836
830
|
'Example: /language output 日本語': 'Example: /language output 日本語',
|
package/locales/fr.js
CHANGED
|
@@ -692,6 +692,9 @@ export default {
|
|
|
692
692
|
'When a session is ending': 'Quand une session se termine',
|
|
693
693
|
'When a permission dialog is displayed':
|
|
694
694
|
'Quand un dialogue de permission est affiché',
|
|
695
|
+
'When a new todo item is created': 'Quand un nouvel élément todo est créé',
|
|
696
|
+
'When a todo item is marked as completed':
|
|
697
|
+
'Quand un élément todo est marqué comme terminé',
|
|
695
698
|
'Input to command is JSON of tool call arguments.':
|
|
696
699
|
"L'entrée de la commande est du JSON des arguments d'appel d'outil.",
|
|
697
700
|
'Input to command is JSON with fields "inputs" (tool call arguments) and "response" (tool call response).':
|
|
@@ -714,6 +717,10 @@ export default {
|
|
|
714
717
|
"L'entrée de la commande est du JSON avec les détails de compaction.",
|
|
715
718
|
'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.':
|
|
716
719
|
"L'entrée de la commande est du JSON avec tool_name, tool_input et tool_use_id. Sortie JSON avec hookSpecificOutput contenant la décision d'autoriser ou de refuser.",
|
|
720
|
+
'Input to command is JSON with todo_id, todo_content, todo_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
721
|
+
"L'entrée de la commande est du JSON avec todo_id, todo_content, todo_status, all_todos et phase. Dans validation, sortie JSON avec decision (allow/block/deny) et reason. Dans postWrite, block/deny est ignoré.",
|
|
722
|
+
'Input to command is JSON with todo_id, todo_content, previous_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
723
|
+
"L'entrée de la commande est du JSON avec todo_id, todo_content, previous_status, all_todos et phase. Dans validation, sortie JSON avec decision (allow/block/deny) et reason. Dans postWrite, block/deny est ignoré.",
|
|
717
724
|
'stdout/stderr not shown': 'stdout/stderr non affiché',
|
|
718
725
|
'show stderr to model and continue conversation':
|
|
719
726
|
'afficher stderr au modèle et continuer la conversation',
|
|
@@ -738,6 +745,12 @@ export default {
|
|
|
738
745
|
'show stderr to user only but continue with compaction':
|
|
739
746
|
"afficher stderr à l'utilisateur uniquement mais continuer la compaction",
|
|
740
747
|
'use hook decision if provided': 'utiliser la décision du hook si fournie',
|
|
748
|
+
'allow todo creation': 'autoriser la création de todo',
|
|
749
|
+
'block todo creation and show reason to model':
|
|
750
|
+
'bloquer la création de todo et afficher la raison au modèle',
|
|
751
|
+
'allow todo completion': 'autoriser la complétion de todo',
|
|
752
|
+
'block todo completion and show reason to model':
|
|
753
|
+
'bloquer la complétion de todo et afficher la raison au modèle',
|
|
741
754
|
'Config not loaded.': 'Configuration non chargée.',
|
|
742
755
|
'Hooks are not enabled. Enable hooks in settings to use this feature.':
|
|
743
756
|
'Les hooks ne sont pas activés. Activez les hooks dans les paramètres pour utiliser cette fonctionnalité.',
|
|
@@ -1789,25 +1802,6 @@ export default {
|
|
|
1789
1802
|
"Les panneaux Arena sont en cours d'exécution dans tmux. Attachez avec : `{{command}}`",
|
|
1790
1803
|
'[{{label}}] failed: {{error}}': '[{{label}}] a échoué : {{error}}',
|
|
1791
1804
|
'Loading suggestions...': 'Chargement des suggestions...',
|
|
1792
|
-
'Re-translate currently loaded dynamic slash descriptions for the current UI language':
|
|
1793
|
-
"Retraduire les descriptions de commandes slash dynamiques chargées pour la langue d'interface actuelle",
|
|
1794
|
-
'Clear cached translations for the current UI language':
|
|
1795
|
-
"Effacer les traductions mises en cache pour la langue d'interface actuelle",
|
|
1796
|
-
'Manage dynamic translation cache': 'Gérer le cache de traduction dynamique',
|
|
1797
|
-
'Manage AI translation for dynamic slash command descriptions':
|
|
1798
|
-
'Gérer la traduction IA des descriptions dynamiques de commandes slash',
|
|
1799
|
-
'Enable AI translation for dynamic slash command descriptions':
|
|
1800
|
-
'Activer la traduction IA des descriptions dynamiques de commandes slash',
|
|
1801
|
-
'Disable AI translation for dynamic slash command descriptions':
|
|
1802
|
-
'Désactiver la traduction IA des descriptions dynamiques de commandes slash',
|
|
1803
|
-
'Show AI translation status for dynamic slash command descriptions':
|
|
1804
|
-
'Afficher l’état de la traduction IA des descriptions dynamiques de commandes slash',
|
|
1805
|
-
'AI translation for dynamic slash command descriptions is {{status}}.':
|
|
1806
|
-
'La traduction IA des descriptions dynamiques de commandes slash est {{status}}.',
|
|
1807
|
-
'AI translation for dynamic slash command descriptions is now enabled.':
|
|
1808
|
-
'La traduction IA des descriptions dynamiques de commandes slash est maintenant activée.',
|
|
1809
|
-
'AI translation for dynamic slash command descriptions is now disabled.':
|
|
1810
|
-
'La traduction IA des descriptions dynamiques de commandes slash est maintenant désactivée.',
|
|
1811
1805
|
'Open the memory manager.': 'Ouvrir le gestionnaire de mémoire.',
|
|
1812
1806
|
'Save a durable memory to the memory system.':
|
|
1813
1807
|
'Enregistrer une mémoire durable dans le système de mémoire.',
|
package/locales/ja.js
CHANGED
|
@@ -418,6 +418,8 @@ export default {
|
|
|
418
418
|
'Before conversation compaction': '会話圧縮前',
|
|
419
419
|
'When a session is ending': 'セッション終了時',
|
|
420
420
|
'When a permission dialog is displayed': '権限ダイアログ表示時',
|
|
421
|
+
'When a new todo item is created': '新Todo項目作成時',
|
|
422
|
+
'When a todo item is marked as completed': 'Todo項目完了時',
|
|
421
423
|
// Hooks - Event Descriptions (detailed)
|
|
422
424
|
'Input to command is JSON of tool call arguments.':
|
|
423
425
|
'コマンドへの入力はツール呼び出し引数の JSON です。',
|
|
@@ -441,6 +443,10 @@ export default {
|
|
|
441
443
|
'コマンドへの入力は圧縮詳細を持つ JSON です。',
|
|
442
444
|
'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.':
|
|
443
445
|
'コマンドへの入力は tool_name、tool_input、tool_use_id を持つ JSON です。許可または拒否の決定を含む hookSpecificOutput を持つ JSON を出力します。',
|
|
446
|
+
'Input to command is JSON with todo_id, todo_content, todo_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
447
|
+
'コマンドへの入力は todo_id、todo_content、todo_status、all_todos、phase を持つ JSON です。validation では decision(allow/block/deny)と reason を持つ JSON を出力します。postWrite では block/deny は無視されます。',
|
|
448
|
+
'Input to command is JSON with todo_id, todo_content, previous_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
449
|
+
'コマンドへの入力は todo_id、todo_content、previous_status、all_todos、phase を持つ JSON です。validation では decision(allow/block/deny)と reason を持つ JSON を出力します。postWrite では block/deny は無視されます。',
|
|
444
450
|
// Hooks - Exit Code Descriptions
|
|
445
451
|
'stdout/stderr not shown': 'stdout/stderr は表示されません',
|
|
446
452
|
'show stderr to model and continue conversation':
|
|
@@ -466,6 +472,12 @@ export default {
|
|
|
466
472
|
'show stderr to user only but continue with compaction':
|
|
467
473
|
'stderr をユーザーのみに表示し、圧縮を続ける',
|
|
468
474
|
'use hook decision if provided': '提供されている場合はフックの決定を使用',
|
|
475
|
+
'allow todo creation': 'Todo作成を許可',
|
|
476
|
+
'block todo creation and show reason to model':
|
|
477
|
+
'Todo作成をブロックし、理由をモデルに表示',
|
|
478
|
+
'allow todo completion': 'Todo完了を許可',
|
|
479
|
+
'block todo completion and show reason to model':
|
|
480
|
+
'Todo完了をブロックし、理由をモデルに表示',
|
|
469
481
|
// Hooks - Messages
|
|
470
482
|
'Config not loaded.': '設定が読み込まれていません。',
|
|
471
483
|
'Hooks are not enabled. Enable hooks in settings to use this feature.':
|
|
@@ -1331,24 +1343,6 @@ export default {
|
|
|
1331
1343
|
'update available': '更新あり',
|
|
1332
1344
|
'checking...': '確認中...',
|
|
1333
1345
|
'not updatable': '更新不可',
|
|
1334
|
-
'Re-translate currently loaded dynamic slash descriptions for the current UI language':
|
|
1335
|
-
'現在の UI 言語の動的スラッシュコマンド説明を再翻訳',
|
|
1336
|
-
'Clear cached translations for the current UI language':
|
|
1337
|
-
'現在の UI 言語の翻訳キャッシュをクリア',
|
|
1338
|
-
'Manage AI translation for dynamic slash command descriptions':
|
|
1339
|
-
'動的スラッシュコマンド説明の AI 翻訳を管理',
|
|
1340
|
-
'Enable AI translation for dynamic slash command descriptions':
|
|
1341
|
-
'動的スラッシュコマンド説明の AI 翻訳を有効化',
|
|
1342
|
-
'Disable AI translation for dynamic slash command descriptions':
|
|
1343
|
-
'動的スラッシュコマンド説明の AI 翻訳を無効化',
|
|
1344
|
-
'Show AI translation status for dynamic slash command descriptions':
|
|
1345
|
-
'動的スラッシュコマンド説明の AI 翻訳状態を表示',
|
|
1346
|
-
'AI translation for dynamic slash command descriptions is {{status}}.':
|
|
1347
|
-
'動的スラッシュコマンド説明の AI 翻訳は{{status}}です。',
|
|
1348
|
-
'AI translation for dynamic slash command descriptions is now enabled.':
|
|
1349
|
-
'動的スラッシュコマンド説明の AI 翻訳を有効にしました。',
|
|
1350
|
-
'AI translation for dynamic slash command descriptions is now disabled.':
|
|
1351
|
-
'動的スラッシュコマンド説明の AI 翻訳を無効にしました。',
|
|
1352
1346
|
'LLM output language set to {{lang}}':
|
|
1353
1347
|
'LLM 出力言語を {{lang}} に設定しました',
|
|
1354
1348
|
'Tool Approval Mode': 'ツール承認モード',
|
|
@@ -1408,7 +1402,6 @@ export default {
|
|
|
1408
1402
|
'コンテキストウィンドウ使用量の内訳を表示します。項目ごとの内訳は "/context detail" を使用してください。',
|
|
1409
1403
|
'Show per-item context usage breakdown.':
|
|
1410
1404
|
'項目ごとのコンテキスト使用量の内訳を表示します。',
|
|
1411
|
-
'Manage dynamic translation cache': '動的翻訳キャッシュを管理',
|
|
1412
1405
|
|
|
1413
1406
|
// === Missing key backfill ===
|
|
1414
1407
|
Status: 'ステータス',
|
package/locales/pt.js
CHANGED
|
@@ -632,6 +632,9 @@ export default {
|
|
|
632
632
|
'When a session is ending': 'Quando uma sessão está terminando',
|
|
633
633
|
'When a permission dialog is displayed':
|
|
634
634
|
'Quando um diálogo de permissão é exibido',
|
|
635
|
+
'When a new todo item is created': 'Quando um novo item todo é criado',
|
|
636
|
+
'When a todo item is marked as completed':
|
|
637
|
+
'Quando um item todo é marcado como concluído',
|
|
635
638
|
// Hooks - Event Descriptions (detailed)
|
|
636
639
|
'Input to command is JSON of tool call arguments.':
|
|
637
640
|
'A entrada para o comando é JSON dos argumentos da chamada da ferramenta.',
|
|
@@ -655,6 +658,10 @@ export default {
|
|
|
655
658
|
'A entrada para o comando é JSON com detalhes da compactação.',
|
|
656
659
|
'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.':
|
|
657
660
|
'A entrada para o comando é JSON com tool_name, tool_input e tool_use_id. Saída é JSON com hookSpecificOutput contendo decisão de permitir ou negar.',
|
|
661
|
+
'Input to command is JSON with todo_id, todo_content, todo_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
662
|
+
'A entrada para o comando é JSON com todo_id, todo_content, todo_status, all_todos e phase. Em validation, saída é JSON com decision (allow/block/deny) e reason. Em postWrite, block/deny é ignorado.',
|
|
663
|
+
'Input to command is JSON with todo_id, todo_content, previous_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
664
|
+
'A entrada para o comando é JSON com todo_id, todo_content, previous_status, all_todos e phase. Em validation, saída é JSON com decision (allow/block/deny) e reason. Em postWrite, block/deny é ignorado.',
|
|
658
665
|
// Hooks - Exit Code Descriptions
|
|
659
666
|
'stdout/stderr not shown': 'stdout/stderr não exibido',
|
|
660
667
|
'show stderr to model and continue conversation':
|
|
@@ -680,6 +687,12 @@ export default {
|
|
|
680
687
|
'show stderr to user only but continue with compaction':
|
|
681
688
|
'mostrar stderr apenas ao usuário mas continuar com compactação',
|
|
682
689
|
'use hook decision if provided': 'usar decisão do hook se fornecida',
|
|
690
|
+
'allow todo creation': 'permitir criação de todo',
|
|
691
|
+
'block todo creation and show reason to model':
|
|
692
|
+
'bloquear criação de todo e mostrar motivo ao modelo',
|
|
693
|
+
'allow todo completion': 'permitir conclusão de todo',
|
|
694
|
+
'block todo completion and show reason to model':
|
|
695
|
+
'bloquear conclusão de todo e mostrar motivo ao modelo',
|
|
683
696
|
// Hooks - Messages
|
|
684
697
|
'Config not loaded.': 'Configuração não carregada.',
|
|
685
698
|
'Hooks are not enabled. Enable hooks in settings to use this feature.':
|
|
@@ -1693,7 +1706,6 @@ export default {
|
|
|
1693
1706
|
'Save a durable memory to the memory system.':
|
|
1694
1707
|
'Salvar uma memória durável no sistema de memória.',
|
|
1695
1708
|
prompts: 'Prompts (sugestões)',
|
|
1696
|
-
'Manage dynamic translation cache': 'Gerenciar cache de tradução dinâmica',
|
|
1697
1709
|
'Open MCP management dialog': 'Abrir diálogo de gerenciamento MCP',
|
|
1698
1710
|
'Manage extension settings': 'Gerenciar configurações da extensão',
|
|
1699
1711
|
'Manage Extensions': 'Gerenciar extensões',
|
|
@@ -1730,24 +1742,6 @@ export default {
|
|
|
1730
1742
|
'update available': 'atualização disponível',
|
|
1731
1743
|
'checking...': 'verificando...',
|
|
1732
1744
|
'not updatable': 'não atualizável',
|
|
1733
|
-
'Re-translate currently loaded dynamic slash descriptions for the current UI language':
|
|
1734
|
-
'Retraduzir as descrições de comandos de barra dinâmicos carregados para o idioma atual da interface',
|
|
1735
|
-
'Clear cached translations for the current UI language':
|
|
1736
|
-
'Limpar traduções em cache para o idioma atual da interface',
|
|
1737
|
-
'Manage AI translation for dynamic slash command descriptions':
|
|
1738
|
-
'Gerenciar tradução por IA para descrições dinâmicas de comandos slash',
|
|
1739
|
-
'Enable AI translation for dynamic slash command descriptions':
|
|
1740
|
-
'Ativar tradução por IA para descrições dinâmicas de comandos slash',
|
|
1741
|
-
'Disable AI translation for dynamic slash command descriptions':
|
|
1742
|
-
'Desativar tradução por IA para descrições dinâmicas de comandos slash',
|
|
1743
|
-
'Show AI translation status for dynamic slash command descriptions':
|
|
1744
|
-
'Mostrar status da tradução por IA para descrições dinâmicas de comandos slash',
|
|
1745
|
-
'AI translation for dynamic slash command descriptions is {{status}}.':
|
|
1746
|
-
'A tradução por IA para descrições dinâmicas de comandos slash está {{status}}.',
|
|
1747
|
-
'AI translation for dynamic slash command descriptions is now enabled.':
|
|
1748
|
-
'A tradução por IA para descrições dinâmicas de comandos slash agora está ativada.',
|
|
1749
|
-
'AI translation for dynamic slash command descriptions is now disabled.':
|
|
1750
|
-
'A tradução por IA para descrições dinâmicas de comandos slash agora está desativada.',
|
|
1751
1745
|
'Ask a quick side question without affecting the main conversation':
|
|
1752
1746
|
'Fazer uma pergunta rápida paralela sem afetar a conversa principal',
|
|
1753
1747
|
'Manage Arena sessions': 'Gerenciar sessões da Arena',
|
package/locales/ru.js
CHANGED
|
@@ -640,6 +640,9 @@ export default {
|
|
|
640
640
|
'Before conversation compaction': 'Перед сжатием разговора',
|
|
641
641
|
'When a session is ending': 'При завершении сессии',
|
|
642
642
|
'When a permission dialog is displayed': 'При отображении диалога разрешений',
|
|
643
|
+
'When a new todo item is created': 'При создании новой задачи',
|
|
644
|
+
'When a todo item is marked as completed':
|
|
645
|
+
'При отметке задачи как выполненной',
|
|
643
646
|
// Hooks - Event Descriptions (detailed)
|
|
644
647
|
'Input to command is JSON of tool call arguments.':
|
|
645
648
|
'Ввод в команду — это JSON аргументов вызова инструмента.',
|
|
@@ -663,6 +666,10 @@ export default {
|
|
|
663
666
|
'Ввод в команду — это JSON с деталями сжатия.',
|
|
664
667
|
'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.':
|
|
665
668
|
'Ввод в команду — это JSON с tool_name, tool_input и tool_use_id. Вывод — JSON с hookSpecificOutput, содержащим решение о разрешении или отказе.',
|
|
669
|
+
'Input to command is JSON with todo_id, todo_content, todo_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
670
|
+
'Ввод в команду — это JSON с todo_id, todo_content, todo_status, all_todos и phase. В validation вывод — JSON с decision (allow/block/deny) и reason. В postWrite block/deny игнорируется.',
|
|
671
|
+
'Input to command is JSON with todo_id, todo_content, previous_status, all_todos, and phase. In validation, output JSON with decision (allow/block/deny) and reason. In postWrite, block/deny is ignored.':
|
|
672
|
+
'Ввод в команду — это JSON с todo_id, todo_content, previous_status, all_todos и phase. В validation вывод — JSON с decision (allow/block/deny) и reason. В postWrite block/deny игнорируется.',
|
|
666
673
|
// Hooks - Exit Code Descriptions
|
|
667
674
|
'stdout/stderr not shown': 'stdout/stderr не отображаются',
|
|
668
675
|
'show stderr to model and continue conversation':
|
|
@@ -689,6 +696,12 @@ export default {
|
|
|
689
696
|
'показать stderr только пользователю, но продолжить сжатие',
|
|
690
697
|
'use hook decision if provided':
|
|
691
698
|
'использовать решение хука, если предоставлено',
|
|
699
|
+
'allow todo creation': 'разрешить создание задачи',
|
|
700
|
+
'block todo creation and show reason to model':
|
|
701
|
+
'заблокировать создание задачи и показать причину модели',
|
|
702
|
+
'allow todo completion': 'разрешить выполнение задачи',
|
|
703
|
+
'block todo completion and show reason to model':
|
|
704
|
+
'заблокировать выполнение задачи и показать причину модели',
|
|
692
705
|
// Hooks - Messages
|
|
693
706
|
'Config not loaded.': 'Конфигурация не загружена.',
|
|
694
707
|
'Hooks are not enabled. Enable hooks in settings to use this feature.':
|
|
@@ -1703,7 +1716,6 @@ export default {
|
|
|
1703
1716
|
Tools: 'Инструменты',
|
|
1704
1717
|
prompts: 'Подсказки',
|
|
1705
1718
|
tools: 'инструменты',
|
|
1706
|
-
'Manage dynamic translation cache': 'Управлять кешем динамического перевода',
|
|
1707
1719
|
'Open MCP management dialog': 'Открыть диалог управления MCP',
|
|
1708
1720
|
'Manage MCP servers': 'Управление MCP servers',
|
|
1709
1721
|
'Manage extension settings': 'Управление настройками расширения',
|
|
@@ -1740,24 +1752,6 @@ export default {
|
|
|
1740
1752
|
'update available': 'доступно обновление',
|
|
1741
1753
|
'checking...': 'проверка...',
|
|
1742
1754
|
'not updatable': 'обновление недоступно',
|
|
1743
|
-
'Re-translate currently loaded dynamic slash descriptions for the current UI language':
|
|
1744
|
-
'Перевести загруженные описания динамических слеш-команд для текущего языка интерфейса',
|
|
1745
|
-
'Clear cached translations for the current UI language':
|
|
1746
|
-
'Очистить кешированные переводы для текущего языка интерфейса',
|
|
1747
|
-
'Manage AI translation for dynamic slash command descriptions':
|
|
1748
|
-
'Управлять AI-переводом описаний динамических слеш-команд',
|
|
1749
|
-
'Enable AI translation for dynamic slash command descriptions':
|
|
1750
|
-
'Включить AI-перевод описаний динамических слеш-команд',
|
|
1751
|
-
'Disable AI translation for dynamic slash command descriptions':
|
|
1752
|
-
'Отключить AI-перевод описаний динамических слеш-команд',
|
|
1753
|
-
'Show AI translation status for dynamic slash command descriptions':
|
|
1754
|
-
'Показать статус AI-перевода описаний динамических слеш-команд',
|
|
1755
|
-
'AI translation for dynamic slash command descriptions is {{status}}.':
|
|
1756
|
-
'AI-перевод описаний динамических слеш-команд {{status}}.',
|
|
1757
|
-
'AI translation for dynamic slash command descriptions is now enabled.':
|
|
1758
|
-
'AI-перевод описаний динамических слеш-команд теперь включен.',
|
|
1759
|
-
'AI translation for dynamic slash command descriptions is now disabled.':
|
|
1760
|
-
'AI-перевод описаний динамических слеш-команд теперь отключен.',
|
|
1761
1755
|
'Ask a quick side question without affecting the main conversation':
|
|
1762
1756
|
'Задать быстрый побочный вопрос, не затрагивая основной разговор',
|
|
1763
1757
|
'Manage Arena sessions': 'Управлять сессиями Arena',
|