@mmmbuto/qwen-code-termux 0.12.0-termux → 0.14.0-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 +188 -55
- package/bundled/loop/SKILL.md +61 -0
- package/bundled/qc-helper/SKILL.md +151 -0
- package/bundled/qc-helper/docs/_meta.ts +30 -0
- package/bundled/qc-helper/docs/common-workflow.md +571 -0
- package/bundled/qc-helper/docs/configuration/_meta.ts +10 -0
- package/bundled/qc-helper/docs/configuration/auth.md +366 -0
- package/bundled/qc-helper/docs/configuration/memory.md +0 -0
- package/bundled/qc-helper/docs/configuration/model-providers.md +542 -0
- package/bundled/qc-helper/docs/configuration/qwen-ignore.md +55 -0
- package/bundled/qc-helper/docs/configuration/settings.md +655 -0
- package/bundled/qc-helper/docs/configuration/themes.md +160 -0
- package/bundled/qc-helper/docs/configuration/trusted-folders.md +61 -0
- package/bundled/qc-helper/docs/configuration.md +73 -0
- package/bundled/qc-helper/docs/extension/_meta.ts +9 -0
- package/bundled/qc-helper/docs/extension/extension-releasing.md +204 -0
- package/bundled/qc-helper/docs/extension/getting-started-extensions.md +299 -0
- package/bundled/qc-helper/docs/extension/introduction.md +338 -0
- package/bundled/qc-helper/docs/features/_meta.ts +19 -0
- package/bundled/qc-helper/docs/features/approval-mode.md +263 -0
- package/bundled/qc-helper/docs/features/arena.md +218 -0
- package/bundled/qc-helper/docs/features/channels/_meta.ts +7 -0
- package/bundled/qc-helper/docs/features/channels/dingtalk.md +134 -0
- package/bundled/qc-helper/docs/features/channels/overview.md +336 -0
- package/bundled/qc-helper/docs/features/channels/plugins.md +87 -0
- package/bundled/qc-helper/docs/features/channels/telegram.md +120 -0
- package/bundled/qc-helper/docs/features/channels/weixin.md +106 -0
- package/bundled/qc-helper/docs/features/checkpointing.md +77 -0
- package/bundled/qc-helper/docs/features/commands.md +312 -0
- package/bundled/qc-helper/docs/features/headless.md +318 -0
- package/bundled/qc-helper/docs/features/hooks.md +720 -0
- package/bundled/qc-helper/docs/features/language.md +139 -0
- package/bundled/qc-helper/docs/features/lsp.md +417 -0
- package/bundled/qc-helper/docs/features/mcp.md +281 -0
- package/bundled/qc-helper/docs/features/sandbox.md +241 -0
- package/bundled/qc-helper/docs/features/scheduled-tasks.md +139 -0
- package/bundled/qc-helper/docs/features/skills.md +289 -0
- package/bundled/qc-helper/docs/features/sub-agents.md +515 -0
- package/bundled/qc-helper/docs/features/token-caching.md +29 -0
- package/bundled/qc-helper/docs/ide-integration/_meta.ts +4 -0
- package/bundled/qc-helper/docs/ide-integration/ide-companion-spec.md +182 -0
- package/bundled/qc-helper/docs/ide-integration/ide-integration.md +144 -0
- package/bundled/qc-helper/docs/integration-github-action.md +241 -0
- package/bundled/qc-helper/docs/integration-jetbrains.md +81 -0
- package/bundled/qc-helper/docs/integration-vscode.md +39 -0
- package/bundled/qc-helper/docs/integration-zed.md +72 -0
- package/bundled/qc-helper/docs/overview.md +64 -0
- package/bundled/qc-helper/docs/quickstart.md +273 -0
- package/bundled/qc-helper/docs/reference/_meta.ts +3 -0
- package/bundled/qc-helper/docs/reference/keyboard-shortcuts.md +72 -0
- package/bundled/qc-helper/docs/support/Uninstall.md +42 -0
- package/bundled/qc-helper/docs/support/_meta.ts +6 -0
- package/bundled/qc-helper/docs/support/tos-privacy.md +112 -0
- package/bundled/qc-helper/docs/support/troubleshooting.md +123 -0
- package/bundled/review/SKILL.md +261 -0
- package/cli.js +298314 -244746
- package/locales/de.js +358 -7
- package/locales/en.js +347 -7
- package/locales/ja.js +347 -7
- package/locales/pt.js +353 -7
- package/locales/ru.js +348 -7
- package/locales/zh.js +333 -7
- package/package.json +12 -7
- package/sandbox-macos-permissive-open.sb +3 -1
- package/vendor/tree-sitter/tree-sitter-bash.wasm +0 -0
- package/vendor/tree-sitter/tree-sitter.wasm +0 -0
- package/CHANGELOG.md +0 -77
package/locales/de.js
CHANGED
|
@@ -99,6 +99,7 @@ export default {
|
|
|
99
99
|
'Analysiert das Projekt und erstellt eine maßgeschneiderte QWEN.md-Datei.',
|
|
100
100
|
'List available Qwen Code tools. Usage: /tools [desc]':
|
|
101
101
|
'Verfügbare Qwen Code Werkzeuge auflisten. Verwendung: /tools [desc]',
|
|
102
|
+
'List available skills.': 'Verfügbare Skills auflisten.',
|
|
102
103
|
'Available Qwen Code CLI tools:': 'Verfügbare Qwen Code CLI-Werkzeuge:',
|
|
103
104
|
'No tools available': 'Keine Werkzeuge verfügbar',
|
|
104
105
|
'View or change the approval mode for tool usage':
|
|
@@ -376,6 +377,7 @@ export default {
|
|
|
376
377
|
'Diese Editoren werden derzeit unterstützt. Bitte beachten Sie, dass einige Editoren nicht im Sandbox-Modus verwendet werden können.',
|
|
377
378
|
'Your preferred editor is:': 'Ihr bevorzugter Editor ist:',
|
|
378
379
|
'Manage extensions': 'Erweiterungen verwalten',
|
|
380
|
+
'Manage installed extensions': 'Installierte Erweiterungen verwalten',
|
|
379
381
|
'List active extensions': 'Aktive Erweiterungen auflisten',
|
|
380
382
|
'Update extensions. Usage: update <extension-names>|--all':
|
|
381
383
|
'Erweiterungen aktualisieren. Verwendung: update <Erweiterungsnamen>|--all',
|
|
@@ -585,6 +587,166 @@ export default {
|
|
|
585
587
|
'Fehler beim Konfigurieren von {{terminalName}}.',
|
|
586
588
|
'Your terminal is already configured for an optimal experience with multiline input (Shift+Enter and Ctrl+Enter).':
|
|
587
589
|
'Ihr Terminal ist bereits für optimale Erfahrung mit mehrzeiliger Eingabe konfiguriert (Umschalt+Enter und Strg+Enter).',
|
|
590
|
+
// ============================================================================
|
|
591
|
+
// Commands - Hooks
|
|
592
|
+
// ============================================================================
|
|
593
|
+
'Manage Qwen Code hooks': 'Qwen Code-Hooks verwalten',
|
|
594
|
+
'List all configured hooks': 'Alle konfigurierten Hooks auflisten',
|
|
595
|
+
'Enable a disabled hook': 'Einen deaktivierten Hook aktivieren',
|
|
596
|
+
'Disable an active hook': 'Einen aktiven Hook deaktivieren',
|
|
597
|
+
// Hooks - Dialog
|
|
598
|
+
Hooks: 'Hooks',
|
|
599
|
+
'Loading hooks...': 'Hooks werden geladen...',
|
|
600
|
+
'Error loading hooks:': 'Fehler beim Laden der Hooks:',
|
|
601
|
+
'Press Escape to close': 'Escape zum Schließen drücken',
|
|
602
|
+
'No hook selected': 'Kein Hook ausgewählt',
|
|
603
|
+
// Hooks - List Step
|
|
604
|
+
'No hook events found.': 'Keine Hook-Ereignisse gefunden.',
|
|
605
|
+
'{{count}} hook configured': '{{count}} Hook konfiguriert',
|
|
606
|
+
'{{count}} hooks configured': '{{count}} Hooks konfiguriert',
|
|
607
|
+
'This menu is read-only. To add or modify hooks, edit settings.json directly or ask Qwen Code.':
|
|
608
|
+
'Dieses Menü ist schreibgeschützt. Um Hooks hinzuzufügen oder zu ändern, bearbeiten Sie settings.json direkt oder fragen Sie Qwen Code.',
|
|
609
|
+
'Enter to select · Esc to cancel': 'Enter zum Auswählen · Esc zum Abbrechen',
|
|
610
|
+
// Hooks - Detail Step
|
|
611
|
+
'Exit codes:': 'Exit-Codes:',
|
|
612
|
+
'Configured hooks:': 'Konfigurierte Hooks:',
|
|
613
|
+
'No hooks configured for this event.':
|
|
614
|
+
'Für dieses Ereignis sind keine Hooks konfiguriert.',
|
|
615
|
+
'To add hooks, edit settings.json directly or ask Qwen.':
|
|
616
|
+
'Um Hooks hinzuzufügen, bearbeiten Sie settings.json direkt oder fragen Sie Qwen.',
|
|
617
|
+
'Enter to select · Esc to go back': 'Enter zum Auswählen · Esc zum Zurück',
|
|
618
|
+
// Hooks - Config Detail Step
|
|
619
|
+
'Hook details': 'Hook-Details',
|
|
620
|
+
'Event:': 'Ereignis:',
|
|
621
|
+
'Extension:': 'Erweiterung:',
|
|
622
|
+
'Desc:': 'Beschreibung:',
|
|
623
|
+
'No hook config selected': 'Keine Hook-Konfiguration ausgewählt',
|
|
624
|
+
'To modify or remove this hook, edit settings.json directly or ask Qwen to help.':
|
|
625
|
+
'Um diesen Hook zu ändern oder zu entfernen, bearbeiten Sie settings.json direkt oder fragen Sie Qwen.',
|
|
626
|
+
// Hooks - Disabled Step
|
|
627
|
+
'Hook Configuration - Disabled': 'Hook-Konfiguration - Deaktiviert',
|
|
628
|
+
'All hooks are currently disabled. You have {{count}} that are not running.':
|
|
629
|
+
'Alle Hooks sind derzeit deaktiviert. Sie haben {{count}} die nicht ausgeführt werden.',
|
|
630
|
+
'{{count}} configured hook': '{{count}} konfigurierter Hook',
|
|
631
|
+
'{{count}} configured hooks': '{{count}} konfigurierte Hooks',
|
|
632
|
+
'When hooks are disabled:': 'Wenn Hooks deaktiviert sind:',
|
|
633
|
+
'No hook commands will execute': 'Keine Hook-Befehle werden ausgeführt',
|
|
634
|
+
'StatusLine will not be displayed': 'StatusLine wird nicht angezeigt',
|
|
635
|
+
'Tool operations will proceed without hook validation':
|
|
636
|
+
'Tool-Operationen werden ohne Hook-Validierung fortgesetzt',
|
|
637
|
+
'To re-enable hooks, remove "disableAllHooks" from settings.json or ask Qwen Code.':
|
|
638
|
+
'Um Hooks wieder zu aktivieren, entfernen Sie "disableAllHooks" aus settings.json oder fragen Sie Qwen Code.',
|
|
639
|
+
// Hooks - Source
|
|
640
|
+
Project: 'Projekt',
|
|
641
|
+
User: 'Benutzer',
|
|
642
|
+
System: 'System',
|
|
643
|
+
Extension: 'Erweiterung',
|
|
644
|
+
'Local Settings': 'Lokale Einstellungen',
|
|
645
|
+
'User Settings': 'Benutzereinstellungen',
|
|
646
|
+
'System Settings': 'Systemeinstellungen',
|
|
647
|
+
Extensions: 'Erweiterungen',
|
|
648
|
+
// Hooks - Status
|
|
649
|
+
'✓ Enabled': '✓ Aktiviert',
|
|
650
|
+
'✗ Disabled': '✗ Deaktiviert',
|
|
651
|
+
// Hooks - Event Descriptions (short)
|
|
652
|
+
'Before tool execution': 'Vor der Tool-Ausführung',
|
|
653
|
+
'After tool execution': 'Nach der Tool-Ausführung',
|
|
654
|
+
'After tool execution fails': 'Wenn die Tool-Ausführung fehlschlägt',
|
|
655
|
+
'When notifications are sent': 'Wenn Benachrichtigungen gesendet werden',
|
|
656
|
+
'When the user submits a prompt': 'Wenn der Benutzer einen Prompt absendet',
|
|
657
|
+
'When a new session is started': 'Wenn eine neue Sitzung gestartet wird',
|
|
658
|
+
'Right before Qwen Code concludes its response':
|
|
659
|
+
'Direkt bevor Qwen Code seine Antwort abschließt',
|
|
660
|
+
'When a subagent (Agent tool call) is started':
|
|
661
|
+
'Wenn ein Subagent (Agent-Tool-Aufruf) gestartet wird',
|
|
662
|
+
'Right before a subagent concludes its response':
|
|
663
|
+
'Direkt bevor ein Subagent seine Antwort abschließt',
|
|
664
|
+
'Before conversation compaction': 'Vor der Gesprächskomprimierung',
|
|
665
|
+
'When a session is ending': 'Wenn eine Sitzung endet',
|
|
666
|
+
'When a permission dialog is displayed':
|
|
667
|
+
'Wenn ein Berechtigungsdialog angezeigt wird',
|
|
668
|
+
// Hooks - Event Descriptions (detailed)
|
|
669
|
+
'Input to command is JSON of tool call arguments.':
|
|
670
|
+
'Die Eingabe an den Befehl ist JSON der Tool-Aufruf-Argumente.',
|
|
671
|
+
'Input to command is JSON with fields "inputs" (tool call arguments) and "response" (tool call response).':
|
|
672
|
+
'Die Eingabe an den Befehl ist JSON mit den Feldern "inputs" (Tool-Aufruf-Argumente) und "response" (Tool-Aufruf-Antwort).',
|
|
673
|
+
'Input to command is JSON with tool_name, tool_input, tool_use_id, error, error_type, is_interrupt, and is_timeout.':
|
|
674
|
+
'Die Eingabe an den Befehl ist JSON mit tool_name, tool_input, tool_use_id, error, error_type, is_interrupt und is_timeout.',
|
|
675
|
+
'Input to command is JSON with notification message and type.':
|
|
676
|
+
'Die Eingabe an den Befehl ist JSON mit Benachrichtigungsnachricht und -typ.',
|
|
677
|
+
'Input to command is JSON with original user prompt text.':
|
|
678
|
+
'Die Eingabe an den Befehl ist JSON mit dem ursprünglichen Benutzer-Prompt-Text.',
|
|
679
|
+
'Input to command is JSON with session start source.':
|
|
680
|
+
'Die Eingabe an den Befehl ist JSON mit der Sitzungsstart-Quelle.',
|
|
681
|
+
'Input to command is JSON with session end reason.':
|
|
682
|
+
'Die Eingabe an den Befehl ist JSON mit dem Sitzungsende-Grund.',
|
|
683
|
+
'Input to command is JSON with agent_id and agent_type.':
|
|
684
|
+
'Die Eingabe an den Befehl ist JSON mit agent_id und agent_type.',
|
|
685
|
+
'Input to command is JSON with agent_id, agent_type, and agent_transcript_path.':
|
|
686
|
+
'Die Eingabe an den Befehl ist JSON mit agent_id, agent_type und agent_transcript_path.',
|
|
687
|
+
'Input to command is JSON with compaction details.':
|
|
688
|
+
'Die Eingabe an den Befehl ist JSON mit Komprimierungsdetails.',
|
|
689
|
+
'Input to command is JSON with tool_name, tool_input, and tool_use_id. Output JSON with hookSpecificOutput containing decision to allow or deny.':
|
|
690
|
+
'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.',
|
|
691
|
+
// Hooks - Exit Code Descriptions
|
|
692
|
+
'stdout/stderr not shown': 'stdout/stderr nicht angezeigt',
|
|
693
|
+
'show stderr to model and continue conversation':
|
|
694
|
+
'stderr dem Modell anzeigen und Konversation fortsetzen',
|
|
695
|
+
'show stderr to user only': 'stderr nur dem Benutzer anzeigen',
|
|
696
|
+
'stdout shown in transcript mode (ctrl+o)':
|
|
697
|
+
'stdout im Transkriptmodus angezeigt (ctrl+o)',
|
|
698
|
+
'show stderr to model immediately': 'stderr sofort dem Modell anzeigen',
|
|
699
|
+
'show stderr to user only but continue with tool call':
|
|
700
|
+
'stderr nur dem Benutzer anzeigen, aber mit Tool-Aufruf fortfahren',
|
|
701
|
+
'block processing, erase original prompt, and show stderr to user only':
|
|
702
|
+
'Verarbeitung blockieren, ursprünglichen Prompt löschen und stderr nur dem Benutzer anzeigen',
|
|
703
|
+
'stdout shown to Qwen': 'stdout dem Qwen anzeigen',
|
|
704
|
+
'show stderr to user only (blocking errors ignored)':
|
|
705
|
+
'stderr nur dem Benutzer anzeigen (Blockierungsfehler ignoriert)',
|
|
706
|
+
'command completes successfully': 'Befehl erfolgreich abgeschlossen',
|
|
707
|
+
'stdout shown to subagent': 'stdout dem Subagenten anzeigen',
|
|
708
|
+
'show stderr to subagent and continue having it run':
|
|
709
|
+
'stderr dem Subagenten anzeigen und ihn weiterlaufen lassen',
|
|
710
|
+
'stdout appended as custom compact instructions':
|
|
711
|
+
'stdout als benutzerdefinierte Komprimierungsanweisungen angehängt',
|
|
712
|
+
'block compaction': 'Komprimierung blockieren',
|
|
713
|
+
'show stderr to user only but continue with compaction':
|
|
714
|
+
'stderr nur dem Benutzer anzeigen, aber mit Komprimierung fortfahren',
|
|
715
|
+
'use hook decision if provided':
|
|
716
|
+
'Hook-Entscheidung verwenden, falls bereitgestellt',
|
|
717
|
+
// Hooks - Messages
|
|
718
|
+
'Config not loaded.': 'Konfiguration nicht geladen.',
|
|
719
|
+
'Hooks are not enabled. Enable hooks in settings to use this feature.':
|
|
720
|
+
'Hooks sind nicht aktiviert. Aktivieren Sie Hooks in den Einstellungen, um diese Funktion zu nutzen.',
|
|
721
|
+
'No hooks configured. Add hooks in your settings.json file.':
|
|
722
|
+
'Keine Hooks konfiguriert. Fügen Sie Hooks in Ihrer settings.json-Datei hinzu.',
|
|
723
|
+
'Configured Hooks ({{count}} total)':
|
|
724
|
+
'Konfigurierte Hooks ({{count}} insgesamt)',
|
|
725
|
+
|
|
726
|
+
// ============================================================================
|
|
727
|
+
// Commands - Session Export
|
|
728
|
+
// ============================================================================
|
|
729
|
+
'Export current session message history to a file':
|
|
730
|
+
'Den Nachrichtenverlauf der aktuellen Sitzung in eine Datei exportieren',
|
|
731
|
+
'Export session to HTML format': 'Sitzung in das HTML-Format exportieren',
|
|
732
|
+
'Export session to JSON format': 'Sitzung in das JSON-Format exportieren',
|
|
733
|
+
'Export session to JSONL format (one message per line)':
|
|
734
|
+
'Sitzung in das JSONL-Format exportieren (eine Nachricht pro Zeile)',
|
|
735
|
+
'Export session to markdown format':
|
|
736
|
+
'Sitzung in das Markdown-Format exportieren',
|
|
737
|
+
|
|
738
|
+
// ============================================================================
|
|
739
|
+
// Commands - Insights
|
|
740
|
+
// ============================================================================
|
|
741
|
+
'generate personalized programming insights from your chat history':
|
|
742
|
+
'Personalisierte Programmier-Einblicke aus Ihrem Chatverlauf generieren',
|
|
743
|
+
|
|
744
|
+
// ============================================================================
|
|
745
|
+
// Commands - Session History
|
|
746
|
+
// ============================================================================
|
|
747
|
+
'Resume a previous session': 'Eine vorherige Sitzung fortsetzen',
|
|
748
|
+
'Restore a tool call. This will reset the conversation and file history to the state it was in when the tool call was suggested':
|
|
749
|
+
'Einen Tool-Aufruf wiederherstellen. Dadurch werden Konversations- und Dateiverlauf auf den Zustand zurückgesetzt, in dem der Tool-Aufruf vorgeschlagen wurde',
|
|
588
750
|
'Could not detect terminal type. Supported terminals: VS Code, Cursor, Windsurf, and Trae.':
|
|
589
751
|
'Terminal-Typ konnte nicht erkannt werden. Unterstützte Terminals: VS Code, Cursor, Windsurf und Trae.',
|
|
590
752
|
'Terminal "{{terminal}}" is not supported yet.':
|
|
@@ -674,7 +836,6 @@ export default {
|
|
|
674
836
|
'Workspace approval mode exists and takes priority. User-level change will have no effect.':
|
|
675
837
|
'Arbeitsbereich-Genehmigungsmodus existiert und hat Vorrang. Benutzerebene-Änderung hat keine Wirkung.',
|
|
676
838
|
'Apply To': 'Anwenden auf',
|
|
677
|
-
'User Settings': 'Benutzereinstellungen',
|
|
678
839
|
'Workspace Settings': 'Arbeitsbereich-Einstellungen',
|
|
679
840
|
|
|
680
841
|
// ============================================================================
|
|
@@ -729,7 +890,6 @@ export default {
|
|
|
729
890
|
'List configured MCP servers and tools':
|
|
730
891
|
'Konfigurierte MCP-Server und Werkzeuge auflisten',
|
|
731
892
|
'Restarts MCP servers.': 'MCP-Server neu starten.',
|
|
732
|
-
'Config not loaded.': 'Konfiguration nicht geladen.',
|
|
733
893
|
'Could not retrieve tool registry.':
|
|
734
894
|
'Werkzeugregister konnte nicht abgerufen werden.',
|
|
735
895
|
'No MCP servers configured with OAuth authentication.':
|
|
@@ -745,6 +905,15 @@ export default {
|
|
|
745
905
|
"Authentifizierung mit MCP-Server '{{name}}' fehlgeschlagen: {{error}}",
|
|
746
906
|
"Re-discovering tools from '{{name}}'...":
|
|
747
907
|
"Werkzeuge von '{{name}}' werden neu erkannt...",
|
|
908
|
+
"Discovered {{count}} tool(s) from '{{name}}'.":
|
|
909
|
+
"{{count}} Werkzeug(e) von '{{name}}' entdeckt.",
|
|
910
|
+
'Authentication complete. Returning to server details...':
|
|
911
|
+
'Authentifizierung abgeschlossen. Zurück zu den Serverdetails...',
|
|
912
|
+
'Authentication successful.': 'Authentifizierung erfolgreich.',
|
|
913
|
+
'If the browser does not open, copy and paste this URL into your browser:':
|
|
914
|
+
'Falls der Browser sich nicht öffnet, kopieren Sie diese URL und fügen Sie sie in Ihren Browser ein:',
|
|
915
|
+
'Make sure to copy the COMPLETE URL - it may wrap across multiple lines.':
|
|
916
|
+
'⚠️ Stellen Sie sicher, dass Sie die VOLLSTÄNDIGE URL kopieren – sie kann über mehrere Zeilen gehen.',
|
|
748
917
|
|
|
749
918
|
// ============================================================================
|
|
750
919
|
// Commands - Chat
|
|
@@ -916,6 +1085,8 @@ export default {
|
|
|
916
1085
|
Disable: 'Deaktivieren',
|
|
917
1086
|
Enable: 'Aktivieren',
|
|
918
1087
|
Authenticate: 'Authentifizieren',
|
|
1088
|
+
'Re-authenticate': 'Erneut authentifizieren',
|
|
1089
|
+
'Clear Authentication': 'Authentifizierung löschen',
|
|
919
1090
|
disabled: 'deaktiviert',
|
|
920
1091
|
'Server:': 'Server:',
|
|
921
1092
|
Reconnect: 'Neu verbinden',
|
|
@@ -927,7 +1098,6 @@ export default {
|
|
|
927
1098
|
'No server selected': 'Kein Server ausgewählt',
|
|
928
1099
|
'(disabled)': '(deaktiviert)',
|
|
929
1100
|
'Error:': 'Fehler:',
|
|
930
|
-
Extension: 'Erweiterung',
|
|
931
1101
|
tool: 'Werkzeug',
|
|
932
1102
|
tools: 'Werkzeuge',
|
|
933
1103
|
connected: 'verbunden',
|
|
@@ -1001,6 +1171,12 @@ export default {
|
|
|
1001
1171
|
"Allow execution of: '{{command}}'?":
|
|
1002
1172
|
"Ausführung erlauben von: '{{command}}'?",
|
|
1003
1173
|
'Yes, allow always ...': 'Ja, immer erlauben ...',
|
|
1174
|
+
'Always allow in this project': 'In diesem Projekt immer erlauben',
|
|
1175
|
+
'Always allow {{action}} in this project':
|
|
1176
|
+
'{{action}} in diesem Projekt immer erlauben',
|
|
1177
|
+
'Always allow for this user': 'Für diesen Benutzer immer erlauben',
|
|
1178
|
+
'Always allow {{action}} for this user':
|
|
1179
|
+
'{{action}} für diesen Benutzer immer erlauben',
|
|
1004
1180
|
'Yes, and auto-accept edits': 'Ja, und Änderungen automatisch akzeptieren',
|
|
1005
1181
|
'Yes, and manually approve edits': 'Ja, und Änderungen manuell genehmigen',
|
|
1006
1182
|
'No, keep planning (esc)': 'Nein, weiter planen (Esc)',
|
|
@@ -1160,8 +1336,8 @@ export default {
|
|
|
1160
1336
|
unknown: 'unbekannt',
|
|
1161
1337
|
"Failed to switch model to '{{modelId}}'.\n\n{{error}}":
|
|
1162
1338
|
"Modell konnte nicht auf '{{modelId}}' umgestellt werden.\n\n{{error}}",
|
|
1163
|
-
'Qwen 3.
|
|
1164
|
-
'Qwen 3.
|
|
1339
|
+
'Qwen 3.6 Plus — efficient hybrid model with leading coding performance':
|
|
1340
|
+
'Qwen 3.6 Plus — effizientes Hybridmodell mit führender Programmierleistung',
|
|
1165
1341
|
'The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)':
|
|
1166
1342
|
'Das neueste Qwen Vision Modell von Alibaba Cloud ModelStudio (Version: qwen3-vl-plus-2025-09-23)',
|
|
1167
1343
|
|
|
@@ -1169,6 +1345,75 @@ export default {
|
|
|
1169
1345
|
// Dialogs - Permissions
|
|
1170
1346
|
// ============================================================================
|
|
1171
1347
|
'Manage folder trust settings': 'Ordnervertrauenseinstellungen verwalten',
|
|
1348
|
+
'Manage permission rules': 'Berechtigungsregeln verwalten',
|
|
1349
|
+
Allow: 'Erlauben',
|
|
1350
|
+
Ask: 'Fragen',
|
|
1351
|
+
Deny: 'Verweigern',
|
|
1352
|
+
Workspace: 'Arbeitsbereich',
|
|
1353
|
+
"Qwen Code won't ask before using allowed tools.":
|
|
1354
|
+
'Qwen Code fragt nicht, bevor erlaubte Tools verwendet werden.',
|
|
1355
|
+
'Qwen Code will ask before using these tools.':
|
|
1356
|
+
'Qwen Code fragt, bevor diese Tools verwendet werden.',
|
|
1357
|
+
'Qwen Code is not allowed to use denied tools.':
|
|
1358
|
+
'Qwen Code darf verweigerte Tools nicht verwenden.',
|
|
1359
|
+
'Manage trusted directories for this workspace.':
|
|
1360
|
+
'Vertrauenswürdige Verzeichnisse für diesen Arbeitsbereich verwalten.',
|
|
1361
|
+
'Any use of the {{tool}} tool': 'Jede Verwendung des {{tool}}-Tools',
|
|
1362
|
+
"{{tool}} commands matching '{{pattern}}'":
|
|
1363
|
+
"{{tool}}-Befehle, die '{{pattern}}' entsprechen",
|
|
1364
|
+
'From user settings': 'Aus Benutzereinstellungen',
|
|
1365
|
+
'From project settings': 'Aus Projekteinstellungen',
|
|
1366
|
+
'From session': 'Aus Sitzung',
|
|
1367
|
+
'Project settings (local)': 'Projekteinstellungen (lokal)',
|
|
1368
|
+
'Saved in .qwen/settings.local.json':
|
|
1369
|
+
'Gespeichert in .qwen/settings.local.json',
|
|
1370
|
+
'Project settings': 'Projekteinstellungen',
|
|
1371
|
+
'Checked in at .qwen/settings.json': 'Eingecheckt in .qwen/settings.json',
|
|
1372
|
+
'User settings': 'Benutzereinstellungen',
|
|
1373
|
+
'Saved in at ~/.qwen/settings.json': 'Gespeichert in ~/.qwen/settings.json',
|
|
1374
|
+
'Add a new rule…': 'Neue Regel hinzufügen…',
|
|
1375
|
+
'Add {{type}} permission rule': '{{type}}-Berechtigungsregel hinzufügen',
|
|
1376
|
+
'Permission rules are a tool name, optionally followed by a specifier in parentheses.':
|
|
1377
|
+
'Berechtigungsregeln sind ein Toolname, optional gefolgt von einem Bezeichner in Klammern.',
|
|
1378
|
+
'e.g.,': 'z.B.',
|
|
1379
|
+
or: 'oder',
|
|
1380
|
+
'Enter permission rule…': 'Berechtigungsregel eingeben…',
|
|
1381
|
+
'Enter to submit · Esc to cancel': 'Enter zum Absenden · Esc zum Abbrechen',
|
|
1382
|
+
'Where should this rule be saved?': 'Wo soll diese Regel gespeichert werden?',
|
|
1383
|
+
'Enter to confirm · Esc to cancel':
|
|
1384
|
+
'Enter zum Bestätigen · Esc zum Abbrechen',
|
|
1385
|
+
'Delete {{type}} rule?': '{{type}}-Regel löschen?',
|
|
1386
|
+
'Are you sure you want to delete this permission rule?':
|
|
1387
|
+
'Sind Sie sicher, dass Sie diese Berechtigungsregel löschen möchten?',
|
|
1388
|
+
'Permissions:': 'Berechtigungen:',
|
|
1389
|
+
'(←/→ or tab to cycle)': '(←/→ oder Tab zum Wechseln)',
|
|
1390
|
+
'Press ↑↓ to navigate · Enter to select · Type to search · Esc to cancel':
|
|
1391
|
+
'↑↓ navigieren · Enter auswählen · Tippen suchen · Esc abbrechen',
|
|
1392
|
+
'Search…': 'Suche…',
|
|
1393
|
+
'Use /trust to manage folder trust settings for this workspace.':
|
|
1394
|
+
'Verwenden Sie /trust, um die Ordnervertrauenseinstellungen für diesen Arbeitsbereich zu verwalten.',
|
|
1395
|
+
// Workspace directory management
|
|
1396
|
+
'Add directory…': 'Verzeichnis hinzufügen…',
|
|
1397
|
+
'Add directory to workspace': 'Verzeichnis zum Arbeitsbereich hinzufügen',
|
|
1398
|
+
'Qwen Code can read files in the workspace, and make edits when auto-accept edits is on.':
|
|
1399
|
+
'Qwen Code kann Dateien im Arbeitsbereich lesen und Bearbeitungen vornehmen, wenn die automatische Akzeptierung aktiviert ist.',
|
|
1400
|
+
'Qwen Code will be able to read files in this directory and make edits when auto-accept edits is on.':
|
|
1401
|
+
'Qwen Code kann Dateien in diesem Verzeichnis lesen und Bearbeitungen vornehmen, wenn die automatische Akzeptierung aktiviert ist.',
|
|
1402
|
+
'Enter the path to the directory:': 'Pfad zum Verzeichnis eingeben:',
|
|
1403
|
+
'Enter directory path…': 'Verzeichnispfad eingeben…',
|
|
1404
|
+
'Tab to complete · Enter to add · Esc to cancel':
|
|
1405
|
+
'Tab zum Vervollständigen · Enter zum Hinzufügen · Esc zum Abbrechen',
|
|
1406
|
+
'Remove directory?': 'Verzeichnis entfernen?',
|
|
1407
|
+
'Are you sure you want to remove this directory from the workspace?':
|
|
1408
|
+
'Möchten Sie dieses Verzeichnis wirklich aus dem Arbeitsbereich entfernen?',
|
|
1409
|
+
' (Original working directory)': ' (Ursprüngliches Arbeitsverzeichnis)',
|
|
1410
|
+
' (from settings)': ' (aus Einstellungen)',
|
|
1411
|
+
'Directory does not exist.': 'Verzeichnis existiert nicht.',
|
|
1412
|
+
'Path is not a directory.': 'Pfad ist kein Verzeichnis.',
|
|
1413
|
+
'This directory is already in the workspace.':
|
|
1414
|
+
'Dieses Verzeichnis ist bereits im Arbeitsbereich.',
|
|
1415
|
+
'Already covered by existing directory: {{dir}}':
|
|
1416
|
+
'Bereits durch vorhandenes Verzeichnis abgedeckt: {{dir}}',
|
|
1172
1417
|
|
|
1173
1418
|
// ============================================================================
|
|
1174
1419
|
// Status Bar
|
|
@@ -1552,8 +1797,8 @@ export default {
|
|
|
1552
1797
|
// Auth Dialog - View Titles and Labels
|
|
1553
1798
|
// ============================================================================
|
|
1554
1799
|
'Coding Plan': 'Coding Plan',
|
|
1555
|
-
"Paste your api key of
|
|
1556
|
-
'Fügen Sie Ihren
|
|
1800
|
+
"Paste your api key of ModelStudio Coding Plan and you're all set!":
|
|
1801
|
+
'Fügen Sie Ihren ModelStudio Coding Plan API-Schlüssel ein und Sie sind bereit!',
|
|
1557
1802
|
Custom: 'Benutzerdefiniert',
|
|
1558
1803
|
'More instructions about configuring `modelProviders` manually.':
|
|
1559
1804
|
'Weitere Anweisungen zur manuellen Konfiguration von `modelProviders`.',
|
|
@@ -1575,6 +1820,36 @@ export default {
|
|
|
1575
1820
|
'Neue Modellkonfigurationen sind für {{region}} verfügbar. Jetzt aktualisieren?',
|
|
1576
1821
|
'{{region}} configuration updated successfully. Model switched to "{{model}}".':
|
|
1577
1822
|
'{{region}}-Konfiguration erfolgreich aktualisiert. Modell auf "{{model}}" umgeschaltet.',
|
|
1823
|
+
'Authenticated successfully with {{region}}. API key and model configs saved to settings.json (backed up).':
|
|
1824
|
+
'Erfolgreich mit {{region}} authentifiziert. API-Schlüssel und Modellkonfigurationen wurden in settings.json gespeichert (gesichert).',
|
|
1825
|
+
|
|
1826
|
+
// ============================================================================
|
|
1827
|
+
// Context Usage Component
|
|
1828
|
+
// ============================================================================
|
|
1829
|
+
'Context Usage': 'Kontextnutzung',
|
|
1830
|
+
'No API response yet. Send a message to see actual usage.':
|
|
1831
|
+
'Noch keine API-Antwort. Senden Sie eine Nachricht, um die tatsächliche Nutzung anzuzeigen.',
|
|
1832
|
+
'Estimated pre-conversation overhead':
|
|
1833
|
+
'Geschätzte Vorabkosten vor der Unterhaltung',
|
|
1834
|
+
'Context window': 'Kontextfenster',
|
|
1835
|
+
tokens: 'Tokens',
|
|
1836
|
+
Used: 'Verwendet',
|
|
1837
|
+
Free: 'Frei',
|
|
1838
|
+
'Autocompact buffer': 'Autokomprimierungs-Puffer',
|
|
1839
|
+
'Usage by category': 'Verwendung nach Kategorie',
|
|
1840
|
+
'System prompt': 'System-Prompt',
|
|
1841
|
+
'Built-in tools': 'Integrierte Tools',
|
|
1842
|
+
'MCP tools': 'MCP-Tools',
|
|
1843
|
+
'Memory files': 'Speicherdateien',
|
|
1844
|
+
Skills: 'Fähigkeiten',
|
|
1845
|
+
Messages: 'Nachrichten',
|
|
1846
|
+
'Show context window usage breakdown.':
|
|
1847
|
+
'Zeigt die Aufschlüsselung der Kontextfenster-Nutzung an.',
|
|
1848
|
+
'Run /context detail for per-item breakdown.':
|
|
1849
|
+
'Führen Sie /context detail für eine Aufschlüsselung nach Elementen aus.',
|
|
1850
|
+
active: 'aktiv',
|
|
1851
|
+
'body loaded': 'Inhalt geladen',
|
|
1852
|
+
memory: 'Speicher',
|
|
1578
1853
|
'{{region}} configuration updated successfully.':
|
|
1579
1854
|
'{{region}}-Konfiguration erfolgreich aktualisiert.',
|
|
1580
1855
|
'Authenticated successfully with {{region}}. API key and model configs saved to settings.json.':
|
|
@@ -1610,4 +1885,80 @@ export default {
|
|
|
1610
1885
|
'↑/↓: Navigieren | Space/Enter: Umschalten | Esc: Abbrechen',
|
|
1611
1886
|
'↑/↓: Navigate | Enter: Select | Esc: Cancel':
|
|
1612
1887
|
'↑/↓: Navigieren | Enter: Auswählen | Esc: Abbrechen',
|
|
1888
|
+
|
|
1889
|
+
// ============================================================================
|
|
1890
|
+
// Commands - Auth
|
|
1891
|
+
// ============================================================================
|
|
1892
|
+
'Configure Qwen authentication information with Qwen-OAuth or Alibaba Cloud Coding Plan':
|
|
1893
|
+
'Qwen-Authentifizierung mit Qwen-OAuth oder Alibaba Cloud Coding Plan konfigurieren',
|
|
1894
|
+
'Authenticate using Qwen OAuth': 'Mit Qwen OAuth authentifizieren',
|
|
1895
|
+
'Authenticate using Alibaba Cloud Coding Plan':
|
|
1896
|
+
'Mit Alibaba Cloud Coding Plan authentifizieren',
|
|
1897
|
+
'Region for Coding Plan (china/global)':
|
|
1898
|
+
'Region für Coding Plan (china/global)',
|
|
1899
|
+
'API key for Coding Plan': 'API-Schlüssel für Coding Plan',
|
|
1900
|
+
'Show current authentication status':
|
|
1901
|
+
'Aktuellen Authentifizierungsstatus anzeigen',
|
|
1902
|
+
'Authentication completed successfully.':
|
|
1903
|
+
'Authentifizierung erfolgreich abgeschlossen.',
|
|
1904
|
+
'Starting Qwen OAuth authentication...':
|
|
1905
|
+
'Qwen OAuth-Authentifizierung wird gestartet...',
|
|
1906
|
+
'Successfully authenticated with Qwen OAuth.':
|
|
1907
|
+
'Erfolgreich mit Qwen OAuth authentifiziert.',
|
|
1908
|
+
'Failed to authenticate with Qwen OAuth: {{error}}':
|
|
1909
|
+
'Authentifizierung mit Qwen OAuth fehlgeschlagen: {{error}}',
|
|
1910
|
+
'Processing Alibaba Cloud Coding Plan authentication...':
|
|
1911
|
+
'Alibaba Cloud Coding Plan-Authentifizierung wird verarbeitet...',
|
|
1912
|
+
'Successfully authenticated with Alibaba Cloud Coding Plan.':
|
|
1913
|
+
'Erfolgreich mit Alibaba Cloud Coding Plan authentifiziert.',
|
|
1914
|
+
'Failed to authenticate with Coding Plan: {{error}}':
|
|
1915
|
+
'Authentifizierung mit Coding Plan fehlgeschlagen: {{error}}',
|
|
1916
|
+
'中国 (China)': '中国 (China)',
|
|
1917
|
+
'阿里云百炼 (aliyun.com)': '阿里云百炼 (aliyun.com)',
|
|
1918
|
+
Global: 'Global',
|
|
1919
|
+
'Alibaba Cloud (alibabacloud.com)': 'Alibaba Cloud (alibabacloud.com)',
|
|
1920
|
+
'Select region for Coding Plan:': 'Region für Coding Plan auswählen:',
|
|
1921
|
+
'Enter your Coding Plan API key: ':
|
|
1922
|
+
'Geben Sie Ihren Coding Plan API-Schlüssel ein: ',
|
|
1923
|
+
'Select authentication method:': 'Authentifizierungsmethode auswählen:',
|
|
1924
|
+
'\n=== Authentication Status ===\n': '\n=== Authentifizierungsstatus ===\n',
|
|
1925
|
+
'⚠️ No authentication method configured.\n':
|
|
1926
|
+
'⚠️ Keine Authentifizierungsmethode konfiguriert.\n',
|
|
1927
|
+
'Run one of the following commands to get started:\n':
|
|
1928
|
+
'Führen Sie einen der folgenden Befehle aus, um zu beginnen:\n',
|
|
1929
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (free tier)':
|
|
1930
|
+
' qwen auth qwen-oauth - Mit Qwen OAuth authentifizieren (kostenlos)',
|
|
1931
|
+
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n':
|
|
1932
|
+
' qwen auth coding-plan - Mit Alibaba Cloud Coding Plan authentifizieren\n',
|
|
1933
|
+
'Or simply run:': 'Oder einfach ausführen:',
|
|
1934
|
+
' qwen auth - Interactive authentication setup\n':
|
|
1935
|
+
' qwen auth - Interaktive Authentifizierungseinrichtung\n',
|
|
1936
|
+
'✓ Authentication Method: Qwen OAuth':
|
|
1937
|
+
'✓ Authentifizierungsmethode: Qwen OAuth',
|
|
1938
|
+
' Type: Free tier': ' Typ: Kostenlos',
|
|
1939
|
+
' Limit: Up to 1,000 requests/day': ' Limit: Bis zu 1.000 Anfragen/Tag',
|
|
1940
|
+
' Models: Qwen latest models\n': ' Modelle: Qwen neueste Modelle\n',
|
|
1941
|
+
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
1942
|
+
'✓ Authentifizierungsmethode: Alibaba Cloud Coding Plan',
|
|
1943
|
+
'中国 (China) - 阿里云百炼': '中国 (China) - 阿里云百炼',
|
|
1944
|
+
'Global - Alibaba Cloud': 'Global - Alibaba Cloud',
|
|
1945
|
+
' Region: {{region}}': ' Region: {{region}}',
|
|
1946
|
+
' Current Model: {{model}}': ' Aktuelles Modell: {{model}}',
|
|
1947
|
+
' Config Version: {{version}}': ' Konfigurationsversion: {{version}}',
|
|
1948
|
+
' Status: API key configured\n': ' Status: API-Schlüssel konfiguriert\n',
|
|
1949
|
+
'⚠️ Authentication Method: Alibaba Cloud Coding Plan (Incomplete)':
|
|
1950
|
+
'⚠️ Authentifizierungsmethode: Alibaba Cloud Coding Plan (Unvollständig)',
|
|
1951
|
+
' Issue: API key not found in environment or settings\n':
|
|
1952
|
+
' Problem: API-Schlüssel nicht in Umgebung oder Einstellungen gefunden\n',
|
|
1953
|
+
' Run `qwen auth coding-plan` to re-configure.\n':
|
|
1954
|
+
' Führen Sie `qwen auth coding-plan` aus, um neu zu konfigurieren.\n',
|
|
1955
|
+
'✓ Authentication Method: {{type}}': '✓ Authentifizierungsmethode: {{type}}',
|
|
1956
|
+
' Status: Configured\n': ' Status: Konfiguriert\n',
|
|
1957
|
+
'Failed to check authentication status: {{error}}':
|
|
1958
|
+
'Authentifizierungsstatus konnte nicht überprüft werden: {{error}}',
|
|
1959
|
+
'Select an option:': 'Option auswählen:',
|
|
1960
|
+
'Raw mode not available. Please run in an interactive terminal.':
|
|
1961
|
+
'Raw-Modus nicht verfügbar. Bitte in einem interaktiven Terminal ausführen.',
|
|
1962
|
+
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1963
|
+
'(↑ ↓ Pfeiltasten zum Navigieren, Enter zum Auswählen, Strg+C zum Beenden)\n',
|
|
1613
1964
|
};
|