@qwen-code/qwen-code 0.14.4 → 0.14.5-nightly.20260417.12b24e2d2
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 +4 -2
- package/bundled/qc-helper/docs/configuration/auth.md +7 -5
- package/bundled/qc-helper/docs/configuration/settings.md +30 -20
- package/bundled/qc-helper/docs/features/_meta.ts +1 -0
- package/bundled/qc-helper/docs/features/commands.md +4 -1
- package/bundled/qc-helper/docs/features/hooks.md +297 -122
- package/bundled/qc-helper/docs/features/memory.md +166 -0
- package/bundled/qc-helper/docs/features/sub-agents.md +37 -1
- package/bundled/qc-helper/docs/support/tos-privacy.md +1 -1
- package/cli.js +66778 -52539
- package/locales/de.js +61 -9
- package/locales/en.js +58 -9
- package/locales/fr.js +17 -9
- package/locales/ja.js +61 -9
- package/locales/pt.js +62 -9
- package/locales/ru.js +60 -9
- package/locales/zh.js +57 -9
- package/package.json +2 -2
- package/bundled/qc-helper/docs/configuration/memory.md +0 -0
package/locales/de.js
CHANGED
|
@@ -650,6 +650,7 @@ export default {
|
|
|
650
650
|
'User Settings': 'Benutzereinstellungen',
|
|
651
651
|
'System Settings': 'Systemeinstellungen',
|
|
652
652
|
Extensions: 'Erweiterungen',
|
|
653
|
+
'Session (temporary)': 'Sitzung (temporär)',
|
|
653
654
|
// Hooks - Status
|
|
654
655
|
'✓ Enabled': '✓ Aktiviert',
|
|
655
656
|
'✗ Disabled': '✗ Deaktiviert',
|
|
@@ -886,6 +887,45 @@ export default {
|
|
|
886
887
|
'Verwendung: /memory add [--global|--project] <zu merkender Text>',
|
|
887
888
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
888
889
|
'Versuche im Speicher {{scope}} zu speichern: "{{fact}}"',
|
|
890
|
+
'Open auto-memory folder': 'Auto-Speicher-Ordner öffnen',
|
|
891
|
+
'Auto-memory: {{status}}': 'Auto-Speicher: {{status}}',
|
|
892
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
893
|
+
'Auto-Konsolidierung: {{status}} · {{lastDream}} · /dream zum Ausführen',
|
|
894
|
+
never: 'nie',
|
|
895
|
+
on: 'ein',
|
|
896
|
+
off: 'aus',
|
|
897
|
+
'❆ dreaming': '❆ konsolidiert',
|
|
898
|
+
'Remove matching entries from managed auto-memory.':
|
|
899
|
+
'Passende Einträge aus dem verwalteten Auto-Speicher entfernen.',
|
|
900
|
+
'Usage: /forget <memory text to remove>':
|
|
901
|
+
'Verwendung: /forget <zu entfernender Erinnerungstext>',
|
|
902
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
903
|
+
'Keine verwalteten Auto-Speicher-Einträge gefunden: {{query}}',
|
|
904
|
+
'Show managed auto-memory status.':
|
|
905
|
+
'Status des verwalteten Auto-Speichers anzeigen.',
|
|
906
|
+
'Run managed auto-memory extraction for the current session.':
|
|
907
|
+
'Verwaltete Auto-Speicher-Extraktion für die aktuelle Sitzung ausführen.',
|
|
908
|
+
'Managed auto-memory root: {{root}}':
|
|
909
|
+
'Verwalteter Auto-Speicher-Stamm: {{root}}',
|
|
910
|
+
'Managed auto-memory topics:': 'Verwaltete Auto-Speicher-Themen:',
|
|
911
|
+
'No extraction cursor found yet.': 'Noch kein Extraktions-Cursor gefunden.',
|
|
912
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
913
|
+
'Cursor: Sitzung={{sessionId}}, Offset={{offset}}, Aktualisiert={{updatedAt}}',
|
|
914
|
+
'No chat client available to extract memory.':
|
|
915
|
+
'Kein Chat-Client verfügbar, um Erinnerungen zu extrahieren.',
|
|
916
|
+
'Managed auto-memory extraction is already running.':
|
|
917
|
+
'Verwaltete Auto-Speicher-Extraktion läuft bereits.',
|
|
918
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
919
|
+
'Verwaltete Auto-Speicher-Extraktion hat keine neuen dauerhaften Erinnerungen gefunden.',
|
|
920
|
+
'Consolidate managed auto-memory topic files.':
|
|
921
|
+
'Verwaltete Auto-Speicher-Themendateien konsolidieren.',
|
|
922
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
923
|
+
'Auto-Speicher-Konsolidierung hat nichts zu verbessern gefunden.',
|
|
924
|
+
'Deduplicated entries: {{count}}': 'Deduplizierte Einträge: {{count}}',
|
|
925
|
+
'Save a durable memory using the save_memory tool.':
|
|
926
|
+
'Eine dauerhafte Erinnerung mit dem save_memory-Tool speichern.',
|
|
927
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
928
|
+
'Verwendung: /remember [--global|--project] <zu merkender Text>',
|
|
889
929
|
|
|
890
930
|
// ============================================================================
|
|
891
931
|
// Commands - MCP
|
|
@@ -1245,10 +1285,16 @@ export default {
|
|
|
1245
1285
|
'Terms of Services and Privacy Notice':
|
|
1246
1286
|
'Nutzungsbedingungen und Datenschutzhinweis',
|
|
1247
1287
|
'Qwen OAuth': 'Qwen OAuth',
|
|
1248
|
-
'
|
|
1249
|
-
'
|
|
1250
|
-
'
|
|
1251
|
-
'
|
|
1288
|
+
'Discontinued — switch to Coding Plan or API Key':
|
|
1289
|
+
'Eingestellt — wechseln Sie zu Coding Plan oder API Key',
|
|
1290
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch provider.':
|
|
1291
|
+
'Das kostenlose Qwen OAuth-Kontingent wurde am 2026-04-15 eingestellt. Führen Sie /auth aus, um den Anbieter zu wechseln.',
|
|
1292
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.':
|
|
1293
|
+
'Das kostenlose Qwen OAuth-Kontingent wurde am 2026-04-15 eingestellt. Bitte wählen Sie Coding Plan oder API Key.',
|
|
1294
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.':
|
|
1295
|
+
'Das kostenlose Qwen OAuth-Angebot wurde am 2026-04-15 eingestellt. Bitte wählen Sie ein Modell eines anderen Anbieter oder führen Sie /auth aus, um zu wechseln.',
|
|
1296
|
+
'\n⚠ Qwen OAuth free tier was discontinued on 2026-04-15. Please select another option.\n':
|
|
1297
|
+
'\n⚠ Das kostenlose Qwen OAuth-Kontingent wurde am 2026-04-15 eingestellt. Bitte wählen Sie eine andere Option.\n',
|
|
1252
1298
|
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
|
|
1253
1299
|
'Kostenpflichtig \u00B7 Bis zu 6.000 Anfragen/5 Std. \u00B7 Alle Alibaba Cloud Coding Plan Modelle',
|
|
1254
1300
|
'Alibaba Cloud Coding Plan': 'Alibaba Cloud Coding Plan',
|
|
@@ -1781,6 +1827,8 @@ export default {
|
|
|
1781
1827
|
'Sie können den Berechtigungsmodus schnell mit Tab oder /approval-mode wechseln.',
|
|
1782
1828
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1783
1829
|
'Probieren Sie /insight, um personalisierte Erkenntnisse aus Ihrem Chatverlauf zu erstellen.',
|
|
1830
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1831
|
+
'Strg+O drücken, um den Kompaktmodus umzuschalten — Tool-Ausgabe und Denkprozess ausblenden.',
|
|
1784
1832
|
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1785
1833
|
'Fügen Sie eine QWEN.md-Datei hinzu, um Qwen Code dauerhaften Projektkontext zu geben.',
|
|
1786
1834
|
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
@@ -1948,8 +1996,8 @@ export default {
|
|
|
1948
1996
|
'⚠️ Keine Authentifizierungsmethode konfiguriert.\n',
|
|
1949
1997
|
'Run one of the following commands to get started:\n':
|
|
1950
1998
|
'Führen Sie einen der folgenden Befehle aus, um zu beginnen:\n',
|
|
1951
|
-
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (
|
|
1952
|
-
' qwen auth qwen-oauth - Mit Qwen OAuth authentifizieren (
|
|
1999
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)':
|
|
2000
|
+
' qwen auth qwen-oauth - Mit Qwen OAuth authentifizieren (eingestellt)',
|
|
1953
2001
|
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n':
|
|
1954
2002
|
' qwen auth coding-plan - Mit Alibaba Cloud Coding Plan authentifizieren\n',
|
|
1955
2003
|
'Or simply run:': 'Oder einfach ausführen:',
|
|
@@ -1957,9 +2005,11 @@ export default {
|
|
|
1957
2005
|
' qwen auth - Interaktive Authentifizierungseinrichtung\n',
|
|
1958
2006
|
'✓ Authentication Method: Qwen OAuth':
|
|
1959
2007
|
'✓ Authentifizierungsmethode: Qwen OAuth',
|
|
1960
|
-
' Type: Free tier (
|
|
1961
|
-
' Typ:
|
|
1962
|
-
' Limit:
|
|
2008
|
+
' Type: Free tier (discontinued 2026-04-15)':
|
|
2009
|
+
' Typ: Kostenloses Kontingent (eingestellt 2026-04-15)',
|
|
2010
|
+
' Limit: No longer available': ' Limit: Nicht mehr verfügbar',
|
|
2011
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.':
|
|
2012
|
+
'Das kostenlose Qwen OAuth-Kontingent wurde am 2026-04-15 eingestellt. Führen Sie /auth aus, um zu Coding Plan, OpenRouter, Fireworks AI oder einem anderen Anbieter zu wechseln.',
|
|
1963
2013
|
' Models: Qwen latest models\n': ' Modelle: Qwen neueste Modelle\n',
|
|
1964
2014
|
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
1965
2015
|
'✓ Authentifizierungsmethode: Alibaba Cloud Coding Plan',
|
|
@@ -1985,6 +2035,8 @@ export default {
|
|
|
1985
2035
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1986
2036
|
'(↑ ↓ Pfeiltasten zum Navigieren, Enter zum Auswählen, Strg+C zum Beenden)\n',
|
|
1987
2037
|
compact: 'kompakt',
|
|
2038
|
+
'compact mode: on (Ctrl+O off)': 'Kompaktmodus: ein (Strg+O aus)',
|
|
2039
|
+
'to toggle compact mode': 'Kompaktmodus umschalten',
|
|
1988
2040
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1989
2041
|
'Tool-Ausgabe und Denkprozess ausblenden für eine übersichtlichere Ansicht (mit Strg+O umschalten).',
|
|
1990
2042
|
'Press Ctrl+O to show full tool output':
|
package/locales/en.js
CHANGED
|
@@ -59,6 +59,7 @@ export default {
|
|
|
59
59
|
'to search history': 'to search history',
|
|
60
60
|
'to paste images': 'to paste images',
|
|
61
61
|
'for external editor': 'for external editor',
|
|
62
|
+
'to toggle compact mode': 'to toggle compact mode',
|
|
62
63
|
'Jump through words in the input': 'Jump through words in the input',
|
|
63
64
|
'Close dialogs, cancel requests, or quit application':
|
|
64
65
|
'Close dialogs, cancel requests, or quit application',
|
|
@@ -948,6 +949,43 @@ export default {
|
|
|
948
949
|
'Usage: /memory add [--global|--project] <text to remember>',
|
|
949
950
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
950
951
|
'Attempting to save to memory {{scope}}: "{{fact}}"',
|
|
952
|
+
'Open auto-memory folder': 'Open auto-memory folder',
|
|
953
|
+
'Auto-memory: {{status}}': 'Auto-memory: {{status}}',
|
|
954
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
955
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run',
|
|
956
|
+
never: 'never',
|
|
957
|
+
on: 'on',
|
|
958
|
+
off: 'off',
|
|
959
|
+
'✦ dreaming': '✦ dreaming',
|
|
960
|
+
'Remove matching entries from managed auto-memory.':
|
|
961
|
+
'Remove matching entries from managed auto-memory.',
|
|
962
|
+
'Usage: /forget <memory text to remove>':
|
|
963
|
+
'Usage: /forget <memory text to remove>',
|
|
964
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
965
|
+
'No managed auto-memory entries matched: {{query}}',
|
|
966
|
+
'Show managed auto-memory status.': 'Show managed auto-memory status.',
|
|
967
|
+
'Run managed auto-memory extraction for the current session.':
|
|
968
|
+
'Run managed auto-memory extraction for the current session.',
|
|
969
|
+
'Managed auto-memory root: {{root}}': 'Managed auto-memory root: {{root}}',
|
|
970
|
+
'Managed auto-memory topics:': 'Managed auto-memory topics:',
|
|
971
|
+
'No extraction cursor found yet.': 'No extraction cursor found yet.',
|
|
972
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
973
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}',
|
|
974
|
+
'No chat client available to extract memory.':
|
|
975
|
+
'No chat client available to extract memory.',
|
|
976
|
+
'Managed auto-memory extraction is already running.':
|
|
977
|
+
'Managed auto-memory extraction is already running.',
|
|
978
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
979
|
+
'Managed auto-memory extraction found no new durable memories.',
|
|
980
|
+
'Consolidate managed auto-memory topic files.':
|
|
981
|
+
'Consolidate managed auto-memory topic files.',
|
|
982
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
983
|
+
'Managed auto-memory dream found nothing to improve.',
|
|
984
|
+
'Deduplicated entries: {{count}}': 'Deduplicated entries: {{count}}',
|
|
985
|
+
'Save a durable memory using the save_memory tool.':
|
|
986
|
+
'Save a durable memory using the save_memory tool.',
|
|
987
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
988
|
+
'Usage: /remember [--global|--project] <text to remember>',
|
|
951
989
|
|
|
952
990
|
// ============================================================================
|
|
953
991
|
// Commands - MCP
|
|
@@ -1298,10 +1336,16 @@ export default {
|
|
|
1298
1336
|
'Terms of Services and Privacy Notice':
|
|
1299
1337
|
'Terms of Services and Privacy Notice',
|
|
1300
1338
|
'Qwen OAuth': 'Qwen OAuth',
|
|
1301
|
-
'
|
|
1302
|
-
'
|
|
1303
|
-
'
|
|
1304
|
-
'
|
|
1339
|
+
'Discontinued — switch to Coding Plan or API Key':
|
|
1340
|
+
'Discontinued — switch to Coding Plan or API Key',
|
|
1341
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch provider.':
|
|
1342
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch provider.',
|
|
1343
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.':
|
|
1344
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.',
|
|
1345
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.':
|
|
1346
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.',
|
|
1347
|
+
'\n⚠ Qwen OAuth free tier was discontinued on 2026-04-15. Please select another option.\n':
|
|
1348
|
+
'\n⚠ Qwen OAuth free tier was discontinued on 2026-04-15. Please select another option.\n',
|
|
1305
1349
|
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
|
|
1306
1350
|
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models',
|
|
1307
1351
|
'Alibaba Cloud Coding Plan': 'Alibaba Cloud Coding Plan',
|
|
@@ -1557,6 +1601,8 @@ export default {
|
|
|
1557
1601
|
'You can switch permission mode quickly with Tab or /approval-mode.',
|
|
1558
1602
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1559
1603
|
'Try /insight to generate personalized insights from your chat history.',
|
|
1604
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1605
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.',
|
|
1560
1606
|
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1561
1607
|
'Add a QWEN.md file to give Qwen Code persistent project context.',
|
|
1562
1608
|
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
@@ -1989,17 +2035,19 @@ export default {
|
|
|
1989
2035
|
'⚠️ No authentication method configured.\n',
|
|
1990
2036
|
'Run one of the following commands to get started:\n':
|
|
1991
2037
|
'Run one of the following commands to get started:\n',
|
|
1992
|
-
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (
|
|
1993
|
-
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (
|
|
2038
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)':
|
|
2039
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)',
|
|
1994
2040
|
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n':
|
|
1995
2041
|
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n',
|
|
1996
2042
|
'Or simply run:': 'Or simply run:',
|
|
1997
2043
|
' qwen auth - Interactive authentication setup\n':
|
|
1998
2044
|
' qwen auth - Interactive authentication setup\n',
|
|
1999
2045
|
'✓ Authentication Method: Qwen OAuth': '✓ Authentication Method: Qwen OAuth',
|
|
2000
|
-
' Type: Free tier (
|
|
2001
|
-
' Type: Free tier (
|
|
2002
|
-
' Limit:
|
|
2046
|
+
' Type: Free tier (discontinued 2026-04-15)':
|
|
2047
|
+
' Type: Free tier (discontinued 2026-04-15)',
|
|
2048
|
+
' Limit: No longer available': ' Limit: No longer available',
|
|
2049
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.':
|
|
2050
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.',
|
|
2003
2051
|
' Models: Qwen latest models\n': ' Models: Qwen latest models\n',
|
|
2004
2052
|
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
2005
2053
|
'✓ Authentication Method: Alibaba Cloud Coding Plan',
|
|
@@ -2025,6 +2073,7 @@ export default {
|
|
|
2025
2073
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
2026
2074
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n',
|
|
2027
2075
|
compact: 'compact',
|
|
2076
|
+
'compact mode: on (Ctrl+O off)': 'compact mode: on (Ctrl+O off)',
|
|
2028
2077
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
2029
2078
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).',
|
|
2030
2079
|
'Press Ctrl+O to show full tool output':
|
package/locales/fr.js
CHANGED
|
@@ -1329,10 +1329,16 @@ export default {
|
|
|
1329
1329
|
'Terms of Services and Privacy Notice':
|
|
1330
1330
|
"Conditions d'utilisation et avis de confidentialité",
|
|
1331
1331
|
'Qwen OAuth': 'Qwen OAuth',
|
|
1332
|
-
'
|
|
1333
|
-
'
|
|
1334
|
-
'
|
|
1335
|
-
'
|
|
1332
|
+
'Discontinued — switch to Coding Plan or API Key':
|
|
1333
|
+
'Abandonné — passez à Coding Plan ou API Key',
|
|
1334
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch provider.':
|
|
1335
|
+
'Le niveau gratuit Qwen OAuth a été abandonné le 2026-04-15. Exécutez /auth pour changer de fournisseur.',
|
|
1336
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.':
|
|
1337
|
+
'Le niveau gratuit Qwen OAuth a été abandonné le 2026-04-15. Veuillez sélectionner Coding Plan ou API Key.',
|
|
1338
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.':
|
|
1339
|
+
"Le niveau gratuit de Qwen OAuth a été abandonné le 2026-04-15. Veuillez sélectionner un modèle d'un autre fournisseur ou exécuter /auth pour changer.",
|
|
1340
|
+
'\n⚠ Qwen OAuth free tier was discontinued on 2026-04-15. Please select another option.\n':
|
|
1341
|
+
'\n⚠ Le niveau gratuit Qwen OAuth a été abandonné le 2026-04-15. Veuillez sélectionner une autre option.\n',
|
|
1336
1342
|
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
|
|
1337
1343
|
"Payant · Jusqu'à 6 000 requêtes/5h · Tous les modèles Alibaba Cloud Coding Plan",
|
|
1338
1344
|
'Alibaba Cloud Coding Plan': 'Plan de codage Alibaba Cloud',
|
|
@@ -2029,8 +2035,8 @@ export default {
|
|
|
2029
2035
|
"⚠️ Aucune méthode d'authentification configurée.\n",
|
|
2030
2036
|
'Run one of the following commands to get started:\n':
|
|
2031
2037
|
"Exécutez l'une des commandes suivantes pour commencer :\n",
|
|
2032
|
-
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (
|
|
2033
|
-
' qwen auth qwen-oauth -
|
|
2038
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)':
|
|
2039
|
+
' qwen auth qwen-oauth - Authentification avec Qwen OAuth (abandonné)',
|
|
2034
2040
|
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n':
|
|
2035
2041
|
' qwen auth coding-plan - Authentifier avec Alibaba Cloud Coding Plan\n',
|
|
2036
2042
|
'Or simply run:': 'Ou simplement exécutez :',
|
|
@@ -2038,9 +2044,11 @@ export default {
|
|
|
2038
2044
|
" qwen auth - Configuration d'authentification interactive\n",
|
|
2039
2045
|
'✓ Authentication Method: Qwen OAuth':
|
|
2040
2046
|
"✓ Méthode d'authentification : Qwen OAuth",
|
|
2041
|
-
' Type: Free tier (
|
|
2042
|
-
' Type : Niveau gratuit (
|
|
2043
|
-
' Limit:
|
|
2047
|
+
' Type: Free tier (discontinued 2026-04-15)':
|
|
2048
|
+
' Type : Niveau gratuit (abandonné 2026-04-15)',
|
|
2049
|
+
' Limit: No longer available': ' Limite : Plus disponible',
|
|
2050
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.':
|
|
2051
|
+
'Le niveau gratuit Qwen OAuth a été abandonné le 2026-04-15. Exécutez /auth pour passer à Coding Plan, OpenRouter, Fireworks AI ou un autre fournisseur.',
|
|
2044
2052
|
' Models: Qwen latest models\n': ' Modèles : Derniers modèles Qwen\n',
|
|
2045
2053
|
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
2046
2054
|
"✓ Méthode d'authentification : Alibaba Cloud Coding Plan",
|
package/locales/ja.js
CHANGED
|
@@ -435,6 +435,7 @@ export default {
|
|
|
435
435
|
'User Settings': 'ユーザー設定',
|
|
436
436
|
'System Settings': 'システム設定',
|
|
437
437
|
Extensions: '拡張機能',
|
|
438
|
+
'Session (temporary)': 'セッション(一時)',
|
|
438
439
|
// Hooks - Status
|
|
439
440
|
'✓ Enabled': '✓ 有効',
|
|
440
441
|
'✗ Disabled': '✗ 無効',
|
|
@@ -648,6 +649,45 @@ export default {
|
|
|
648
649
|
'使い方: /memory add [--global|--project] <記憶するテキスト>',
|
|
649
650
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
650
651
|
'メモリ {{scope}} への保存を試行中: "{{fact}}"',
|
|
652
|
+
'Open auto-memory folder': '自動メモリフォルダを開く',
|
|
653
|
+
'Auto-memory: {{status}}': '自動メモリ: {{status}}',
|
|
654
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
655
|
+
'自動統合: {{status}} · {{lastDream}} · /dream で実行',
|
|
656
|
+
never: '未実行',
|
|
657
|
+
on: 'オン',
|
|
658
|
+
off: 'オフ',
|
|
659
|
+
'❆ dreaming': '❆ 整理中',
|
|
660
|
+
'Remove matching entries from managed auto-memory.':
|
|
661
|
+
'マネージド自動メモリから一致するエントリを削除する。',
|
|
662
|
+
'Usage: /forget <memory text to remove>':
|
|
663
|
+
'使い方: /forget <削除するメモリテキスト>',
|
|
664
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
665
|
+
'一致するマネージド自動メモリエントリなし: {{query}}',
|
|
666
|
+
'Show managed auto-memory status.':
|
|
667
|
+
'マネージド自動メモリのステータスを表示する。',
|
|
668
|
+
'Run managed auto-memory extraction for the current session.':
|
|
669
|
+
'現在のセッションのマネージド自動メモリ抽出を実行する。',
|
|
670
|
+
'Managed auto-memory root: {{root}}':
|
|
671
|
+
'マネージド自動メモリのルート: {{root}}',
|
|
672
|
+
'Managed auto-memory topics:': 'マネージド自動メモリのトピック:',
|
|
673
|
+
'No extraction cursor found yet.': 'まだ抽出カーソルが見つかりません。',
|
|
674
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
675
|
+
'カーソル: セッション={{sessionId}}, オフセット={{offset}}, 更新={{updatedAt}}',
|
|
676
|
+
'No chat client available to extract memory.':
|
|
677
|
+
'メモリを抽出できるチャットクライアントがありません。',
|
|
678
|
+
'Managed auto-memory extraction is already running.':
|
|
679
|
+
'マネージド自動メモリ抽出はすでに実行中です。',
|
|
680
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
681
|
+
'マネージド自動メモリ抽出で新しい永続メモリは見つかりませんでした。',
|
|
682
|
+
'Consolidate managed auto-memory topic files.':
|
|
683
|
+
'マネージド自動メモリトピックファイルを統合する。',
|
|
684
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
685
|
+
'自動メモリ統合で改善するものは見つかりませんでした。',
|
|
686
|
+
'Deduplicated entries: {{count}}': '重複除去したエントリ: {{count}}',
|
|
687
|
+
'Save a durable memory using the save_memory tool.':
|
|
688
|
+
'save_memoryツールを使用して永続メモリを保存する。',
|
|
689
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
690
|
+
'使い方: /remember [--global|--project] <覚えておくテキスト>',
|
|
651
691
|
// MCP
|
|
652
692
|
'Authenticate with an OAuth-enabled MCP server':
|
|
653
693
|
'OAuth対応のMCPサーバーで認証',
|
|
@@ -966,10 +1006,16 @@ export default {
|
|
|
966
1006
|
'続行するには認証方法を選択してください。Ctrl+C をもう一度押すと終了します',
|
|
967
1007
|
'Terms of Services and Privacy Notice': '利用規約とプライバシー通知',
|
|
968
1008
|
'Qwen OAuth': 'Qwen OAuth',
|
|
969
|
-
'
|
|
970
|
-
'
|
|
971
|
-
'
|
|
972
|
-
'
|
|
1009
|
+
'Discontinued — switch to Coding Plan or API Key':
|
|
1010
|
+
'終了 — Coding Plan または API Key に切り替えてください',
|
|
1011
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch provider.':
|
|
1012
|
+
'Qwen OAuth 無料枠は 2026-04-15 に終了しました。/auth を実行してプロバイダーを切り替えてください。',
|
|
1013
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.':
|
|
1014
|
+
'Qwen OAuth 無料枠は 2026-04-15 に終了しました。Coding Plan または API Key を選択してください。',
|
|
1015
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.':
|
|
1016
|
+
'Qwen OAuth無料プランは2026-04-15に終了しました。他のプロバイダーのモデルを選択するか、/authを実行して切り替えてください。',
|
|
1017
|
+
'\n⚠ Qwen OAuth free tier was discontinued on 2026-04-15. Please select another option.\n':
|
|
1018
|
+
'\n⚠ Qwen OAuth 無料枠は 2026-04-15 に終了しました。他のオプションを選択してください。\n',
|
|
973
1019
|
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
|
|
974
1020
|
'有料 \u00B7 5時間最大6,000リクエスト \u00B7 すべての Alibaba Cloud Coding Plan モデル',
|
|
975
1021
|
'Alibaba Cloud Coding Plan': 'Alibaba Cloud Coding Plan',
|
|
@@ -1176,6 +1222,8 @@ export default {
|
|
|
1176
1222
|
'Tab または /approval-mode で権限モードをすばやく切り替えられます。',
|
|
1177
1223
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1178
1224
|
'/insight でチャット履歴からパーソナライズされたインサイトを生成できます。',
|
|
1225
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1226
|
+
'Ctrl+O でコンパクトモードを切り替え — ツール出力と思考を非表示にしてすっきり表示。',
|
|
1179
1227
|
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1180
1228
|
'QWEN.md ファイルを追加すると、Qwen Code に永続的なプロジェクトコンテキストを与えられます。',
|
|
1181
1229
|
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
@@ -1440,17 +1488,19 @@ export default {
|
|
|
1440
1488
|
'⚠️ 認証方法が設定されていません。\n',
|
|
1441
1489
|
'Run one of the following commands to get started:\n':
|
|
1442
1490
|
'以下のコマンドのいずれかを実行して開始してください:\n',
|
|
1443
|
-
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (
|
|
1444
|
-
' qwen auth qwen-oauth - Qwen OAuth
|
|
1491
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)':
|
|
1492
|
+
' qwen auth qwen-oauth - Qwen OAuth で認証(終了)',
|
|
1445
1493
|
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n':
|
|
1446
1494
|
' qwen auth coding-plan - Alibaba Cloud Coding Plan で認証\n',
|
|
1447
1495
|
'Or simply run:': 'または以下を実行:',
|
|
1448
1496
|
' qwen auth - Interactive authentication setup\n':
|
|
1449
1497
|
' qwen auth - インタラクティブ認証セットアップ\n',
|
|
1450
1498
|
'✓ Authentication Method: Qwen OAuth': '✓ 認証方法: Qwen OAuth',
|
|
1451
|
-
' Type: Free tier (
|
|
1452
|
-
' タイプ:
|
|
1453
|
-
' Limit:
|
|
1499
|
+
' Type: Free tier (discontinued 2026-04-15)':
|
|
1500
|
+
' タイプ: 無料枠(2026-04-15 終了)',
|
|
1501
|
+
' Limit: No longer available': ' 制限: 利用不可',
|
|
1502
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.':
|
|
1503
|
+
'Qwen OAuth 無料枠は 2026-04-15 に終了しました。/auth を実行して Coding Plan、OpenRouter、Fireworks AI、または他のプロバイダーに切り替えてください。',
|
|
1454
1504
|
' Models: Qwen latest models\n': ' モデル: Qwen 最新モデル\n',
|
|
1455
1505
|
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
1456
1506
|
'✓ 認証方法: Alibaba Cloud Coding Plan',
|
|
@@ -1476,6 +1526,8 @@ export default {
|
|
|
1476
1526
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1477
1527
|
'(↑ ↓ 矢印キーで移動、Enter で選択、Ctrl+C で終了)\n',
|
|
1478
1528
|
compact: 'コンパクト',
|
|
1529
|
+
'compact mode: on (Ctrl+O off)': 'コンパクトモード: オン (Ctrl+O でオフ)',
|
|
1530
|
+
'to toggle compact mode': 'コンパクトモードの切り替え',
|
|
1479
1531
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1480
1532
|
'コンパクトモードでツール出力と思考を非表示にします(Ctrl+O で切り替え)。',
|
|
1481
1533
|
'Press Ctrl+O to show full tool output': 'Ctrl+O で完全なツール出力を表示',
|
package/locales/pt.js
CHANGED
|
@@ -51,6 +51,7 @@ export default {
|
|
|
51
51
|
'to search history': 'para pesquisar no histórico',
|
|
52
52
|
'to paste images': 'para colar imagens',
|
|
53
53
|
'for external editor': 'para editor externo',
|
|
54
|
+
'to toggle compact mode': 'alternar modo compacto',
|
|
54
55
|
'Jump through words in the input': 'Pular palavras na entrada',
|
|
55
56
|
'Close dialogs, cancel requests, or quit application':
|
|
56
57
|
'Fechar diálogos, cancelar solicitações ou sair do aplicativo',
|
|
@@ -656,6 +657,7 @@ export default {
|
|
|
656
657
|
'User Settings': 'Configurações do Usuário',
|
|
657
658
|
'System Settings': 'Configurações do Sistema',
|
|
658
659
|
Extensions: 'Extensões',
|
|
660
|
+
'Session (temporary)': 'Sessão (temporário)',
|
|
659
661
|
// Hooks - Status
|
|
660
662
|
'✓ Enabled': '✓ Ativado',
|
|
661
663
|
'✗ Disabled': '✗ Desativado',
|
|
@@ -891,6 +893,46 @@ export default {
|
|
|
891
893
|
'Uso: /memory add [--global|--project] <texto para lembrar>',
|
|
892
894
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
893
895
|
'Tentando salvar na memória {{scope}}: "{{fact}}"',
|
|
896
|
+
'Open auto-memory folder': 'Abrir pasta de memória automática',
|
|
897
|
+
'Auto-memory: {{status}}': 'Memória automática: {{status}}',
|
|
898
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
899
|
+
'Consolidação automática: {{status}} · {{lastDream}} · /dream para executar',
|
|
900
|
+
never: 'nunca',
|
|
901
|
+
on: 'ativado',
|
|
902
|
+
off: 'desativado',
|
|
903
|
+
'❆ dreaming': '❆ consolidando',
|
|
904
|
+
'Remove matching entries from managed auto-memory.':
|
|
905
|
+
'Remover entradas correspondentes da memória automática gerenciada.',
|
|
906
|
+
'Usage: /forget <memory text to remove>':
|
|
907
|
+
'Uso: /forget <texto de memória a remover>',
|
|
908
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
909
|
+
'Nenhuma entrada de memória automática gerenciada correspondeu: {{query}}',
|
|
910
|
+
'Show managed auto-memory status.':
|
|
911
|
+
'Mostrar status da memória automática gerenciada.',
|
|
912
|
+
'Run managed auto-memory extraction for the current session.':
|
|
913
|
+
'Executar extração de memória automática gerenciada para a sessão atual.',
|
|
914
|
+
'Managed auto-memory root: {{root}}':
|
|
915
|
+
'Raiz da memória automática gerenciada: {{root}}',
|
|
916
|
+
'Managed auto-memory topics:': 'Tópicos de memória automática gerenciada:',
|
|
917
|
+
'No extraction cursor found yet.':
|
|
918
|
+
'Nenhum cursor de extração encontrado ainda.',
|
|
919
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
920
|
+
'Cursor: sessão={{sessionId}}, offset={{offset}}, atualizado={{updatedAt}}',
|
|
921
|
+
'No chat client available to extract memory.':
|
|
922
|
+
'Nenhum cliente de chat disponível para extrair memória.',
|
|
923
|
+
'Managed auto-memory extraction is already running.':
|
|
924
|
+
'A extração de memória automática gerenciada já está em execução.',
|
|
925
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
926
|
+
'A extração de memória automática gerenciada não encontrou novas memórias duráveis.',
|
|
927
|
+
'Consolidate managed auto-memory topic files.':
|
|
928
|
+
'Consolidar arquivos de tópicos de memória automática gerenciada.',
|
|
929
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
930
|
+
'A consolidação de memória automática não encontrou nada para melhorar.',
|
|
931
|
+
'Deduplicated entries: {{count}}': 'Entradas desduplicadas: {{count}}',
|
|
932
|
+
'Save a durable memory using the save_memory tool.':
|
|
933
|
+
'Salvar uma memória durável usando a ferramenta save_memory.',
|
|
934
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
935
|
+
'Uso: /remember [--global|--project] <texto a lembrar>',
|
|
894
936
|
|
|
895
937
|
// ============================================================================
|
|
896
938
|
// Commands - MCP
|
|
@@ -1251,10 +1293,16 @@ export default {
|
|
|
1251
1293
|
'Terms of Services and Privacy Notice':
|
|
1252
1294
|
'Termos de Serviço e Aviso de Privacidade',
|
|
1253
1295
|
'Qwen OAuth': 'Qwen OAuth',
|
|
1254
|
-
'
|
|
1255
|
-
'
|
|
1256
|
-
'
|
|
1257
|
-
'
|
|
1296
|
+
'Discontinued — switch to Coding Plan or API Key':
|
|
1297
|
+
'Descontinuado — mude para Coding Plan ou API Key',
|
|
1298
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch provider.':
|
|
1299
|
+
'O nível gratuito do Qwen OAuth foi descontinuado em 2026-04-15. Execute /auth para trocar de provedor.',
|
|
1300
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select Coding Plan or API Key instead.':
|
|
1301
|
+
'O nível gratuito do Qwen OAuth foi descontinuado em 2026-04-15. Selecione Coding Plan ou API Key.',
|
|
1302
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Please select a model from another provider or run /auth to switch.':
|
|
1303
|
+
'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.',
|
|
1304
|
+
'\n⚠ Qwen OAuth free tier was discontinued on 2026-04-15. Please select another option.\n':
|
|
1305
|
+
'\n⚠ O nível gratuito do Qwen OAuth foi descontinuado em 2026-04-15. Selecione outra opção.\n',
|
|
1258
1306
|
'Paid \u00B7 Up to 6,000 requests/5 hrs \u00B7 All Alibaba Cloud Coding Plan Models':
|
|
1259
1307
|
'Pago \u00B7 Até 6.000 solicitações/5 hrs \u00B7 Todos os modelos Alibaba Cloud Coding Plan',
|
|
1260
1308
|
'Alibaba Cloud Coding Plan': 'Alibaba Cloud Coding Plan',
|
|
@@ -1514,6 +1562,8 @@ export default {
|
|
|
1514
1562
|
'Você pode alternar o modo de permissão rapidamente com Shift+Tab ou /approval-mode.',
|
|
1515
1563
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1516
1564
|
'Experimente /insight para gerar insights personalizados do seu histórico de conversas.',
|
|
1565
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1566
|
+
'Pressione Ctrl+O para alternar o modo compacto — ocultar saída de ferramentas e raciocínio.',
|
|
1517
1567
|
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1518
1568
|
'Adicione um arquivo QWEN.md para dar ao Qwen Code um contexto persistente do projeto.',
|
|
1519
1569
|
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
@@ -1939,17 +1989,19 @@ export default {
|
|
|
1939
1989
|
'⚠️ Nenhum método de autenticação configurado.\n',
|
|
1940
1990
|
'Run one of the following commands to get started:\n':
|
|
1941
1991
|
'Execute um dos seguintes comandos para começar:\n',
|
|
1942
|
-
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (
|
|
1943
|
-
' qwen auth qwen-oauth - Autenticar com Qwen OAuth (
|
|
1992
|
+
' qwen auth qwen-oauth - Authenticate with Qwen OAuth (discontinued)':
|
|
1993
|
+
' qwen auth qwen-oauth - Autenticar com Qwen OAuth (descontinuado)',
|
|
1944
1994
|
' qwen auth coding-plan - Authenticate with Alibaba Cloud Coding Plan\n':
|
|
1945
1995
|
' qwen auth coding-plan - Autenticar com Alibaba Cloud Coding Plan\n',
|
|
1946
1996
|
'Or simply run:': 'Ou simplesmente execute:',
|
|
1947
1997
|
' qwen auth - Interactive authentication setup\n':
|
|
1948
1998
|
' qwen auth - Configuração interativa de autenticação\n',
|
|
1949
1999
|
'✓ Authentication Method: Qwen OAuth': '✓ Método de autenticação: Qwen OAuth',
|
|
1950
|
-
' Type: Free tier (
|
|
1951
|
-
' Tipo:
|
|
1952
|
-
' Limit:
|
|
2000
|
+
' Type: Free tier (discontinued 2026-04-15)':
|
|
2001
|
+
' Tipo: Nível gratuito (descontinuado 2026-04-15)',
|
|
2002
|
+
' Limit: No longer available': ' Limite: Não mais disponível',
|
|
2003
|
+
'Qwen OAuth free tier was discontinued on 2026-04-15. Run /auth to switch to Coding Plan, OpenRouter, Fireworks AI, or another provider.':
|
|
2004
|
+
'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.',
|
|
1953
2005
|
' Models: Qwen latest models\n': ' Modelos: Modelos Qwen mais recentes\n',
|
|
1954
2006
|
'✓ Authentication Method: Alibaba Cloud Coding Plan':
|
|
1955
2007
|
'✓ Método de autenticação: Alibaba Cloud Coding Plan',
|
|
@@ -1975,6 +2027,7 @@ export default {
|
|
|
1975
2027
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1976
2028
|
'(Use ↑ ↓ para navegar, Enter para selecionar, Ctrl+C para sair)\n',
|
|
1977
2029
|
compact: 'compacto',
|
|
2030
|
+
'compact mode: on (Ctrl+O off)': 'modo compacto: ligado (Ctrl+O desligar)',
|
|
1978
2031
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1979
2032
|
'Ocultar saída da ferramenta e raciocínio para uma visualização mais limpa (alternar com Ctrl+O).',
|
|
1980
2033
|
'Press Ctrl+O to show full tool output':
|