@kikkimo/claude-launcher 2.5.0 → 3.0.0
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/CHANGELOG.md +42 -0
- package/README.md +17 -10
- package/claude-launcher +614 -398
- package/docs/README-zh.md +17 -10
- package/lib/api-manager.js +136 -11
- package/lib/auth/password-input.js +8 -4
- package/lib/auth/password-validator.js +83 -48
- package/lib/i18n/index.js +4 -3
- package/lib/i18n/language-manager.js +4 -3
- package/lib/i18n/locales/de.js +89 -11
- package/lib/i18n/locales/en.js +89 -11
- package/lib/i18n/locales/es.js +89 -11
- package/lib/i18n/locales/fr.js +89 -11
- package/lib/i18n/locales/it.js +89 -11
- package/lib/i18n/locales/ja.js +89 -11
- package/lib/i18n/locales/ko.js +89 -11
- package/lib/i18n/locales/pt.js +89 -11
- package/lib/i18n/locales/ru.js +89 -11
- package/lib/i18n/locales/zh-TW.js +89 -11
- package/lib/i18n/locales/zh.js +89 -11
- package/lib/launcher.js +121 -93
- package/lib/ui/api-editor.js +210 -0
- package/lib/ui/interactive-table.js +216 -99
- package/lib/ui/menu.js +73 -62
- package/lib/ui/prompts.js +168 -139
- package/lib/ui/screen.js +125 -0
- package/lib/utils/stdin-manager.js +11 -9
- package/lib/utils/version-checker.js +63 -3
- package/package.json +2 -2
- package/docs/superpowers/plans/2026-03-31-update-models-and-auto-mode.md +0 -1414
- package/docs/superpowers/specs/2026-03-31-update-models-and-auto-mode-design.md +0 -187
package/lib/i18n/locales/fr.js
CHANGED
|
@@ -14,7 +14,7 @@ module.exports = {
|
|
|
14
14
|
launch_api: "Lancer Claude Code avec API tierce",
|
|
15
15
|
launch_api_skip: "Lancer Claude Code avec API tierce (Ignorer la vérification des permissions)",
|
|
16
16
|
api_management: "Gestion des API tierces",
|
|
17
|
-
|
|
17
|
+
config_management: "Gestion de la configuration",
|
|
18
18
|
version_check: "Vérification de mise à jour",
|
|
19
19
|
exit: "Quitter"
|
|
20
20
|
},
|
|
@@ -22,11 +22,26 @@ module.exports = {
|
|
|
22
22
|
title: "Gestion des API tierces",
|
|
23
23
|
add_new: "Ajouter une nouvelle API tierce",
|
|
24
24
|
remove: "Supprimer une API",
|
|
25
|
+
edit: "Edit API",
|
|
25
26
|
switch: "Changer l'API active",
|
|
26
27
|
statistics: "Voir les statistiques d'API",
|
|
27
28
|
export: "Exporter la configuration",
|
|
28
29
|
import: "Importer la configuration",
|
|
29
30
|
change_password: "Changer le mot de passe",
|
|
31
|
+
manual_upgrade: "Mise à niveau manuelle du modèle",
|
|
32
|
+
back: "Retour au menu principal"
|
|
33
|
+
},
|
|
34
|
+
config: {
|
|
35
|
+
title: "Gestion de la configuration",
|
|
36
|
+
language: "Paramètres de langue",
|
|
37
|
+
auto_model_upgrade: "Mise à niveau auto du modèle",
|
|
38
|
+
model_upgrade_notification: "Notification de mise à niveau du modèle",
|
|
39
|
+
telemetry: "Télémétrie Anthropic",
|
|
40
|
+
api_launch_mode: "Mode de lancement API tierce",
|
|
41
|
+
back: "Retour au menu principal"
|
|
42
|
+
},
|
|
43
|
+
api_select: {
|
|
44
|
+
title: "Sélectionnez une API à lancer :",
|
|
30
45
|
back: "Retour au menu principal"
|
|
31
46
|
},
|
|
32
47
|
remove_api: {
|
|
@@ -204,6 +219,23 @@ module.exports = {
|
|
|
204
219
|
remove_confirm: "API à supprimer : {0}",
|
|
205
220
|
cannot_undo: "Cette action ne peut pas être annulée !",
|
|
206
221
|
removed_info: "Supprimé : {0}"
|
|
222
|
+
},
|
|
223
|
+
edit: {
|
|
224
|
+
select_api: 'Select API to edit',
|
|
225
|
+
current_value: 'Current value: {0}',
|
|
226
|
+
new_value: 'New value: ',
|
|
227
|
+
success: '✅ {0} updated successfully',
|
|
228
|
+
cancelled: 'Edit cancelled',
|
|
229
|
+
back: 'Back',
|
|
230
|
+
field_name: 'Name',
|
|
231
|
+
field_provider: 'Provider',
|
|
232
|
+
field_base_url: 'Base URL',
|
|
233
|
+
field_model: 'Model',
|
|
234
|
+
name_required: 'Name cannot be empty when editing',
|
|
235
|
+
duplicate: 'This change would create a duplicate configuration',
|
|
236
|
+
provider_url_mismatch: 'Provider and URL may be inconsistent',
|
|
237
|
+
provider_url_mismatch_detail: 'Provider: {0} / URL suggests: {1}',
|
|
238
|
+
url_provider_hint: "URL matches provider '{0}' but current provider is '{1}'. Consider updating Provider field."
|
|
207
239
|
}
|
|
208
240
|
},
|
|
209
241
|
|
|
@@ -277,6 +309,10 @@ module.exports = {
|
|
|
277
309
|
good: "Bon",
|
|
278
310
|
strong: "Fort",
|
|
279
311
|
very_strong: "Très fort"
|
|
312
|
+
},
|
|
313
|
+
guard: {
|
|
314
|
+
delete: { header: '🗑️ Remove API — Password required to verify identity' },
|
|
315
|
+
edit: { header: '✏️ Edit API — Password required to verify identity' }
|
|
280
316
|
}
|
|
281
317
|
},
|
|
282
318
|
|
|
@@ -324,15 +360,22 @@ module.exports = {
|
|
|
324
360
|
|
|
325
361
|
// Navigation et interface utilisateur
|
|
326
362
|
navigation: {
|
|
327
|
-
use_arrows: "Utilisez les touches fléchées ↑↓ pour naviguer, Entrée pour sélectionner, double-tap Ctrl+C pour quitter",
|
|
328
|
-
use_arrows_esc: "Utilisez ↑↓ pour naviguer, Entrée pour {0}, ESC pour
|
|
363
|
+
use_arrows: "Utilisez les touches fléchées ↑↓ pour naviguer, Entrée/Espace pour sélectionner, double-tap Ctrl+C pour quitter",
|
|
364
|
+
use_arrows_esc: "Utilisez ↑↓ pour naviguer, Entrée pour {0}, ESC pour annuler",
|
|
365
|
+
use_arrows_page_esc: "←→ Page {0}/{1}, ↑↓ to navigate, Enter to {2}, ESC to cancel",
|
|
329
366
|
use_number_keys: "Utilisez les touches numériques pour sélectionner :",
|
|
330
367
|
currently_active: "API actuellement active",
|
|
331
368
|
select_action: "Sélectionner une action :",
|
|
332
369
|
no_options: "Aucune option disponible",
|
|
333
370
|
enter_choice: "Entrez votre choix ({0}, ou toute autre touche pour retourner au menu principal) :",
|
|
334
371
|
arrow_keys_not_available: "Touches fléchées non disponibles. Entrez le numéro de sélection (1-{0}) :",
|
|
335
|
-
enter_choice_prompt: "[>] Entrez votre choix (1-2, ou toute autre touche pour retourner au menu principal) : "
|
|
372
|
+
enter_choice_prompt: "[>] Entrez votre choix (1-2, ou toute autre touche pour retourner au menu principal) : ",
|
|
373
|
+
action: {
|
|
374
|
+
edit: 'edit',
|
|
375
|
+
remove: 'remove',
|
|
376
|
+
switch: 'switch',
|
|
377
|
+
select: 'select'
|
|
378
|
+
}
|
|
336
379
|
},
|
|
337
380
|
|
|
338
381
|
// Processus de lancement
|
|
@@ -573,19 +616,15 @@ module.exports = {
|
|
|
573
616
|
model_upgrade: {
|
|
574
617
|
notification: "Mise à niveau du modèle disponible : {0} → {1}",
|
|
575
618
|
notification_api: "API : {0}",
|
|
576
|
-
notification_hint: "
|
|
619
|
+
notification_hint: "Mise à niveau auto : \"Gestion de la configuration\" / Manuelle : \"Gestion des API tierces > Mise à niveau manuelle du modèle\"",
|
|
577
620
|
auto_upgraded: "Modèle mis à niveau automatiquement : {0} → {1}",
|
|
578
621
|
|
|
579
|
-
settings_title: "Paramètres de mise à niveau du modèle",
|
|
580
622
|
current_config: "Configuration actuelle",
|
|
581
623
|
auto_upgrade_label: "Utiliser automatiquement le dernier modèle",
|
|
582
624
|
auto_upgrade_on: "ACTIVÉ",
|
|
583
625
|
auto_upgrade_off: "DÉSACTIVÉ",
|
|
584
626
|
|
|
585
|
-
menu_toggle_auto_on: "Mise à niveau auto [● ACTIVÉ]",
|
|
586
|
-
menu_toggle_auto_off: "Mise à niveau auto [○ DÉSACTIVÉ]",
|
|
587
627
|
menu_manual_upgrade: "Mettre à niveau tous les modèles manuellement",
|
|
588
|
-
menu_back: "Retour",
|
|
589
628
|
|
|
590
629
|
manual_title: "Vérification de mise à niveau du modèle",
|
|
591
630
|
manual_checking: "Vérification de {0} configurations d'API...",
|
|
@@ -602,8 +641,47 @@ module.exports = {
|
|
|
602
641
|
manual_stats_skipped: "Ignoré : {0} ({1} déjà à jour, {2} sans info de mise à niveau)"
|
|
603
642
|
},
|
|
604
643
|
hints: {
|
|
605
|
-
auto_mode_info: '
|
|
644
|
+
auto_mode_info: 'Appuyez sur Shift+Tab après le lancement pour passer en mode exécution automatique',
|
|
606
645
|
active_api_info: 'Actif : {0} / {1}',
|
|
607
|
-
no_active_api: 'Aucune API active
|
|
646
|
+
no_active_api: 'Aucune API active configurée. Allez dans "Gestion des API" pour en ajouter une.',
|
|
647
|
+
direct_mode_desc: 'Mode lancement direct, lance immédiatement avec l\'API active',
|
|
648
|
+
direct_mode_api_info: 'API : {0} | Fournisseur : {1}',
|
|
649
|
+
direct_mode_api_detail: 'Modèle : {0} | Dernière utilisation : {1}',
|
|
650
|
+
direct_mode_change: 'Le mode de lancement peut être changé dans "Gestion de la configuration"',
|
|
651
|
+
direct_mode_no_active: 'Mode lancement direct, mais aucune API active sélectionnée',
|
|
652
|
+
direct_mode_no_active_detail: '{0} APIs configurées, veuillez en sélectionner une dans "Gestion des API tierces"',
|
|
653
|
+
select_mode_desc: 'Mode sélection, choisir une API dans la liste avant le lancement',
|
|
654
|
+
select_mode_change: 'Le mode de lancement peut être changé dans "Gestion de la configuration"',
|
|
655
|
+
select_mode_api_count: '{0} APIs configurées, active : {1}',
|
|
656
|
+
select_mode_active_none: 'aucune',
|
|
657
|
+
no_api_configured: 'Aucune API tierce configurée. Ajoutez-en une dans "Gestion des API tierces" d\'abord',
|
|
658
|
+
api_management_info: '{0} APIs configurées, active : {1}',
|
|
659
|
+
config_summary: 'Langue : {0} | Mode de lancement : {1} | Télémétrie : {2}',
|
|
660
|
+
edit_password_required: '🔒 Password verification required to edit API configuration',
|
|
661
|
+
remove_password_required: '🔒 Password verification required to remove API',
|
|
662
|
+
export_password_required: '🔒 Password verification required to export configuration',
|
|
663
|
+
import_password_required: '🔒 Password verification required to import configuration',
|
|
664
|
+
config: {
|
|
665
|
+
language: 'Changer la langue d\'affichage, actuelle : {0}',
|
|
666
|
+
auto_upgrade: 'Détecter et mettre à niveau automatiquement les versions de modèles pour les APIs tierces',
|
|
667
|
+
upgrade_notification: 'Afficher la notification de mise à niveau du modèle en haut du menu principal',
|
|
668
|
+
telemetry: 'Injecte DISABLE_TELEMETRY=1 lorsque désactivé. Recommandé : OFF',
|
|
669
|
+
launch_mode: 'Direct : lancer avec l\'API active / Sélection : choisir dans la liste d\'abord'
|
|
670
|
+
},
|
|
671
|
+
api_select: {
|
|
672
|
+
info: 'API : {0}',
|
|
673
|
+
detail: 'Fournisseur : {0} | Modèle : {1}',
|
|
674
|
+
usage: 'Utilisation : {0} fois | Dernière utilisation : {1}'
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
|
|
678
|
+
config: {
|
|
679
|
+
values: {
|
|
680
|
+
on: 'ACTIVÉ',
|
|
681
|
+
off: 'DÉSACTIVÉ',
|
|
682
|
+
direct_mode: 'Mode direct',
|
|
683
|
+
select_mode: 'Mode sélection',
|
|
684
|
+
recommended_off: 'DÉSACTIVÉ (Recommandé)'
|
|
685
|
+
}
|
|
608
686
|
}
|
|
609
687
|
};
|
package/lib/i18n/locales/it.js
CHANGED
|
@@ -14,7 +14,7 @@ module.exports = {
|
|
|
14
14
|
launch_api: "Avvia Claude Code con API di Terze Parti",
|
|
15
15
|
launch_api_skip: "Avvia Claude Code con API di Terze Parti (Salta Automaticamente Permessi)",
|
|
16
16
|
api_management: "Gestione API di Terze Parti",
|
|
17
|
-
|
|
17
|
+
config_management: "Gestione Configurazione",
|
|
18
18
|
version_check: "Controllo Aggiornamenti Versione",
|
|
19
19
|
exit: "Esci"
|
|
20
20
|
},
|
|
@@ -22,11 +22,26 @@ module.exports = {
|
|
|
22
22
|
title: "Gestione API di Terze Parti",
|
|
23
23
|
add_new: "Aggiungi Nuova API di Terze Parti",
|
|
24
24
|
remove: "Rimuovi API",
|
|
25
|
+
edit: "Edit API",
|
|
25
26
|
switch: "Cambia API Attiva",
|
|
26
27
|
statistics: "Visualizza Statistiche API",
|
|
27
28
|
export: "Esporta Configurazione",
|
|
28
29
|
import: "Importa Configurazione",
|
|
29
30
|
change_password: "Cambia Password",
|
|
31
|
+
manual_upgrade: "Aggiornamento Manuale Modello",
|
|
32
|
+
back: "Torna al Menu Principale"
|
|
33
|
+
},
|
|
34
|
+
config: {
|
|
35
|
+
title: "Gestione Configurazione",
|
|
36
|
+
language: "Impostazioni Lingua",
|
|
37
|
+
auto_model_upgrade: "Aggiornamento Automatico Modello",
|
|
38
|
+
model_upgrade_notification: "Notifica Aggiornamento Modello",
|
|
39
|
+
telemetry: "Telemetria Anthropic",
|
|
40
|
+
api_launch_mode: "Modalità Avvio API di Terze Parti",
|
|
41
|
+
back: "Torna al Menu Principale"
|
|
42
|
+
},
|
|
43
|
+
api_select: {
|
|
44
|
+
title: "Seleziona un'API da avviare:",
|
|
30
45
|
back: "Torna al Menu Principale"
|
|
31
46
|
},
|
|
32
47
|
remove_api: {
|
|
@@ -204,6 +219,23 @@ module.exports = {
|
|
|
204
219
|
remove_confirm: "API da rimuovere: {0}",
|
|
205
220
|
cannot_undo: "Questa azione non può essere annullata!",
|
|
206
221
|
removed_info: "Rimossa: {0}"
|
|
222
|
+
},
|
|
223
|
+
edit: {
|
|
224
|
+
select_api: 'Select API to edit',
|
|
225
|
+
current_value: 'Current value: {0}',
|
|
226
|
+
new_value: 'New value: ',
|
|
227
|
+
success: '✅ {0} updated successfully',
|
|
228
|
+
cancelled: 'Edit cancelled',
|
|
229
|
+
back: 'Back',
|
|
230
|
+
field_name: 'Name',
|
|
231
|
+
field_provider: 'Provider',
|
|
232
|
+
field_base_url: 'Base URL',
|
|
233
|
+
field_model: 'Model',
|
|
234
|
+
name_required: 'Name cannot be empty when editing',
|
|
235
|
+
duplicate: 'This change would create a duplicate configuration',
|
|
236
|
+
provider_url_mismatch: 'Provider and URL may be inconsistent',
|
|
237
|
+
provider_url_mismatch_detail: 'Provider: {0} / URL suggests: {1}',
|
|
238
|
+
url_provider_hint: "URL matches provider '{0}' but current provider is '{1}'. Consider updating Provider field."
|
|
207
239
|
}
|
|
208
240
|
},
|
|
209
241
|
|
|
@@ -277,6 +309,10 @@ module.exports = {
|
|
|
277
309
|
good: "Buona",
|
|
278
310
|
strong: "Forte",
|
|
279
311
|
very_strong: "Molto Forte"
|
|
312
|
+
},
|
|
313
|
+
guard: {
|
|
314
|
+
delete: { header: '🗑️ Remove API — Password required to verify identity' },
|
|
315
|
+
edit: { header: '✏️ Edit API — Password required to verify identity' }
|
|
280
316
|
}
|
|
281
317
|
},
|
|
282
318
|
|
|
@@ -324,15 +360,22 @@ module.exports = {
|
|
|
324
360
|
|
|
325
361
|
// Navigation and UI
|
|
326
362
|
navigation: {
|
|
327
|
-
use_arrows: "Usa i tasti freccia ↑↓ per navigare, Invio per selezionare, Doppio Ctrl+C per uscire",
|
|
328
|
-
use_arrows_esc: "Usa ↑↓ per navigare, Invio per {0}, ESC per
|
|
363
|
+
use_arrows: "Usa i tasti freccia ↑↓ per navigare, Invio/Spazio per selezionare, Doppio Ctrl+C per uscire",
|
|
364
|
+
use_arrows_esc: "Usa ↑↓ per navigare, Invio per {0}, ESC per annullare",
|
|
365
|
+
use_arrows_page_esc: "←→ Page {0}/{1}, ↑↓ to navigate, Enter to {2}, ESC to cancel",
|
|
329
366
|
use_number_keys: "Usa i tasti numerici per selezionare:",
|
|
330
367
|
currently_active: "API attualmente attiva",
|
|
331
368
|
select_action: "Seleziona un'azione:",
|
|
332
369
|
no_options: "Nessuna opzione disponibile",
|
|
333
370
|
enter_choice: "Inserisci la tua scelta ({0}, o qualsiasi altro tasto per tornare al menu principale):",
|
|
334
371
|
arrow_keys_not_available: "Tasti freccia non disponibili. Inserisci numero selezione (1-{0}):",
|
|
335
|
-
enter_choice_prompt: "[>] Inserisci la tua scelta (1-2, o qualsiasi altro tasto per tornare al menu principale): "
|
|
372
|
+
enter_choice_prompt: "[>] Inserisci la tua scelta (1-2, o qualsiasi altro tasto per tornare al menu principale): ",
|
|
373
|
+
action: {
|
|
374
|
+
edit: 'edit',
|
|
375
|
+
remove: 'remove',
|
|
376
|
+
switch: 'switch',
|
|
377
|
+
select: 'select'
|
|
378
|
+
}
|
|
336
379
|
},
|
|
337
380
|
|
|
338
381
|
// Launch process
|
|
@@ -573,19 +616,15 @@ module.exports = {
|
|
|
573
616
|
model_upgrade: {
|
|
574
617
|
notification: "Aggiornamento modello disponibile: {0} → {1}",
|
|
575
618
|
notification_api: "API: {0}",
|
|
576
|
-
notification_hint: "
|
|
619
|
+
notification_hint: "Aggiornamento auto: \"Gestione Configurazione\" / Manuale: \"Gestione API di Terze Parti > Aggiornamento Manuale Modello\"",
|
|
577
620
|
auto_upgraded: "Modello aggiornato automaticamente: {0} → {1}",
|
|
578
621
|
|
|
579
|
-
settings_title: "Impostazioni aggiornamento modello",
|
|
580
622
|
current_config: "Configurazione attuale",
|
|
581
623
|
auto_upgrade_label: "Usa automaticamente l'ultimo modello",
|
|
582
624
|
auto_upgrade_on: "ATTIVO",
|
|
583
625
|
auto_upgrade_off: "DISATTIVO",
|
|
584
626
|
|
|
585
|
-
menu_toggle_auto_on: "Aggiornamento auto [● ATTIVO]",
|
|
586
|
-
menu_toggle_auto_off: "Aggiornamento auto [○ DISATTIVO]",
|
|
587
627
|
menu_manual_upgrade: "Aggiorna tutti i modelli manualmente",
|
|
588
|
-
menu_back: "Indietro",
|
|
589
628
|
|
|
590
629
|
manual_title: "Controllo aggiornamento modello",
|
|
591
630
|
manual_checking: "Controllo {0} configurazioni API...",
|
|
@@ -602,8 +641,47 @@ module.exports = {
|
|
|
602
641
|
manual_stats_skipped: "Saltati: {0} ({1} già aggiornati, {2} senza info aggiornamento)"
|
|
603
642
|
},
|
|
604
643
|
hints: {
|
|
605
|
-
auto_mode_info: '
|
|
644
|
+
auto_mode_info: 'Premi Shift+Tab dopo l\'avvio per passare alla modalità esecuzione automatica',
|
|
606
645
|
active_api_info: 'Attivo: {0} / {1}',
|
|
607
|
-
no_active_api: 'Nessuna API attiva configurata. Vai a "Gestione API" per aggiungerne una.'
|
|
646
|
+
no_active_api: 'Nessuna API attiva configurata. Vai a "Gestione API" per aggiungerne una.',
|
|
647
|
+
direct_mode_desc: 'Modalità avvio diretto, avvia immediatamente con l\'API attiva',
|
|
648
|
+
direct_mode_api_info: 'API: {0} | Provider: {1}',
|
|
649
|
+
direct_mode_api_detail: 'Modello: {0} | Ultimo utilizzo: {1}',
|
|
650
|
+
direct_mode_change: 'La modalità di avvio può essere cambiata in "Gestione Configurazione"',
|
|
651
|
+
direct_mode_no_active: 'Modalità avvio diretto, ma nessuna API attiva selezionata',
|
|
652
|
+
direct_mode_no_active_detail: '{0} API configurate, selezionane una in "Gestione API di Terze Parti"',
|
|
653
|
+
select_mode_desc: 'Modalità selezione, scegli un\'API dalla lista prima dell\'avvio',
|
|
654
|
+
select_mode_change: 'La modalità di avvio può essere cambiata in "Gestione Configurazione"',
|
|
655
|
+
select_mode_api_count: '{0} API configurate, attiva: {1}',
|
|
656
|
+
select_mode_active_none: 'nessuna',
|
|
657
|
+
no_api_configured: 'Nessuna API di terze parti configurata. Aggiungine una in "Gestione API di Terze Parti" prima',
|
|
658
|
+
api_management_info: '{0} API configurate, attiva: {1}',
|
|
659
|
+
config_summary: 'Lingua: {0} | Modalità avvio: {1} | Telemetria: {2}',
|
|
660
|
+
edit_password_required: '🔒 Password verification required to edit API configuration',
|
|
661
|
+
remove_password_required: '🔒 Password verification required to remove API',
|
|
662
|
+
export_password_required: '🔒 Password verification required to export configuration',
|
|
663
|
+
import_password_required: '🔒 Password verification required to import configuration',
|
|
664
|
+
config: {
|
|
665
|
+
language: 'Cambia la lingua di visualizzazione, attuale: {0}',
|
|
666
|
+
auto_upgrade: 'Rileva e aggiorna automaticamente le versioni dei modelli per le API di terze parti',
|
|
667
|
+
upgrade_notification: 'Mostra notifica aggiornamento modello in cima al menu principale',
|
|
668
|
+
telemetry: 'Inietta DISABLE_TELEMETRY=1 quando disabilitato. Raccomandato: OFF',
|
|
669
|
+
launch_mode: 'Diretto: avvia con API attiva / Selezione: scegli dalla lista prima'
|
|
670
|
+
},
|
|
671
|
+
api_select: {
|
|
672
|
+
info: 'API: {0}',
|
|
673
|
+
detail: 'Provider: {0} | Modello: {1}',
|
|
674
|
+
usage: 'Utilizzo: {0} volte | Ultimo utilizzo: {1}'
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
|
|
678
|
+
config: {
|
|
679
|
+
values: {
|
|
680
|
+
on: 'ATTIVO',
|
|
681
|
+
off: 'DISATTIVO',
|
|
682
|
+
direct_mode: 'Modalità diretta',
|
|
683
|
+
select_mode: 'Modalità selezione',
|
|
684
|
+
recommended_off: 'DISATTIVO (Raccomandato)'
|
|
685
|
+
}
|
|
608
686
|
}
|
|
609
687
|
};
|
package/lib/i18n/locales/ja.js
CHANGED
|
@@ -14,7 +14,7 @@ module.exports = {
|
|
|
14
14
|
launch_api: "サードパーティAPIでClaude Codeを起動",
|
|
15
15
|
launch_api_skip: "サードパーティAPIでClaude Codeを起動(権限確認をスキップ)",
|
|
16
16
|
api_management: "サードパーティAPI管理",
|
|
17
|
-
|
|
17
|
+
config_management: "設定管理",
|
|
18
18
|
version_check: "バージョン更新確認",
|
|
19
19
|
exit: "終了"
|
|
20
20
|
},
|
|
@@ -22,11 +22,26 @@ module.exports = {
|
|
|
22
22
|
title: "サードパーティAPI管理",
|
|
23
23
|
add_new: "新しいサードパーティAPIを追加",
|
|
24
24
|
remove: "APIを削除",
|
|
25
|
+
edit: "Edit API",
|
|
25
26
|
switch: "アクティブなAPIを切り替え",
|
|
26
27
|
statistics: "API統計を表示",
|
|
27
28
|
export: "設定をエクスポート",
|
|
28
29
|
import: "設定をインポート",
|
|
29
30
|
change_password: "パスワードを変更",
|
|
31
|
+
manual_upgrade: "手動モデルアップグレード",
|
|
32
|
+
back: "メインメニューに戻る"
|
|
33
|
+
},
|
|
34
|
+
config: {
|
|
35
|
+
title: "設定管理",
|
|
36
|
+
language: "言語設定",
|
|
37
|
+
auto_model_upgrade: "モデル自動アップグレード",
|
|
38
|
+
model_upgrade_notification: "モデルアップグレード通知",
|
|
39
|
+
telemetry: "Anthropic テレメトリ",
|
|
40
|
+
api_launch_mode: "サードパーティAPI起動モード",
|
|
41
|
+
back: "メインメニューに戻る"
|
|
42
|
+
},
|
|
43
|
+
api_select: {
|
|
44
|
+
title: "起動するAPIを選択:",
|
|
30
45
|
back: "メインメニューに戻る"
|
|
31
46
|
},
|
|
32
47
|
remove_api: {
|
|
@@ -204,6 +219,23 @@ module.exports = {
|
|
|
204
219
|
remove_confirm: "削除するAPI:{0}",
|
|
205
220
|
cannot_undo: "この操作は元に戻せません!",
|
|
206
221
|
removed_info: "削除されました:{0}"
|
|
222
|
+
},
|
|
223
|
+
edit: {
|
|
224
|
+
select_api: 'Select API to edit',
|
|
225
|
+
current_value: 'Current value: {0}',
|
|
226
|
+
new_value: 'New value: ',
|
|
227
|
+
success: '✅ {0} updated successfully',
|
|
228
|
+
cancelled: 'Edit cancelled',
|
|
229
|
+
back: 'Back',
|
|
230
|
+
field_name: 'Name',
|
|
231
|
+
field_provider: 'Provider',
|
|
232
|
+
field_base_url: 'Base URL',
|
|
233
|
+
field_model: 'Model',
|
|
234
|
+
name_required: 'Name cannot be empty when editing',
|
|
235
|
+
duplicate: 'This change would create a duplicate configuration',
|
|
236
|
+
provider_url_mismatch: 'Provider and URL may be inconsistent',
|
|
237
|
+
provider_url_mismatch_detail: 'Provider: {0} / URL suggests: {1}',
|
|
238
|
+
url_provider_hint: "URL matches provider '{0}' but current provider is '{1}'. Consider updating Provider field."
|
|
207
239
|
}
|
|
208
240
|
},
|
|
209
241
|
|
|
@@ -277,6 +309,10 @@ module.exports = {
|
|
|
277
309
|
good: "良好",
|
|
278
310
|
strong: "強い",
|
|
279
311
|
very_strong: "非常に強い"
|
|
312
|
+
},
|
|
313
|
+
guard: {
|
|
314
|
+
delete: { header: '🗑️ Remove API — Password required to verify identity' },
|
|
315
|
+
edit: { header: '✏️ Edit API — Password required to verify identity' }
|
|
280
316
|
}
|
|
281
317
|
},
|
|
282
318
|
|
|
@@ -324,15 +360,22 @@ module.exports = {
|
|
|
324
360
|
|
|
325
361
|
// ナビゲーションとUI
|
|
326
362
|
navigation: {
|
|
327
|
-
use_arrows: "↑↓矢印キーでナビゲート、Enter
|
|
328
|
-
use_arrows_esc: "↑↓でナビゲート、Enterで{0}、ESC
|
|
363
|
+
use_arrows: "↑↓矢印キーでナビゲート、Enter/スペースキーで選択、Ctrl+Cを2回押して終了",
|
|
364
|
+
use_arrows_esc: "↑↓でナビゲート、Enterで{0}、ESCでキャンセル",
|
|
365
|
+
use_arrows_page_esc: "←→ Page {0}/{1}, ↑↓ to navigate, Enter to {2}, ESC to cancel",
|
|
329
366
|
use_number_keys: "数字キーで選択:",
|
|
330
367
|
currently_active: "現在アクティブなAPI",
|
|
331
368
|
select_action: "アクションを選択:",
|
|
332
369
|
no_options: "利用可能なオプションがありません",
|
|
333
370
|
enter_choice: "選択を入力({0}、またはその他のキーでメインメニューに戻る):",
|
|
334
371
|
arrow_keys_not_available: "矢印キーが利用できません。選択番号を入力 (1-{0}):",
|
|
335
|
-
enter_choice_prompt: "[>] 選択を入力 (1-2、またはその他のキーでメインメニューに戻る):"
|
|
372
|
+
enter_choice_prompt: "[>] 選択を入力 (1-2、またはその他のキーでメインメニューに戻る):",
|
|
373
|
+
action: {
|
|
374
|
+
edit: 'edit',
|
|
375
|
+
remove: 'remove',
|
|
376
|
+
switch: 'switch',
|
|
377
|
+
select: 'select'
|
|
378
|
+
}
|
|
336
379
|
},
|
|
337
380
|
|
|
338
381
|
// 起動プロセス
|
|
@@ -573,19 +616,15 @@ module.exports = {
|
|
|
573
616
|
model_upgrade: {
|
|
574
617
|
notification: "モデルアップグレードが利用可能:{0} → {1}",
|
|
575
618
|
notification_api: "API:{0}",
|
|
576
|
-
notification_hint: "
|
|
619
|
+
notification_hint: "自動アップグレード:「設定管理」/ 手動:「サードパーティAPI管理 > 手動モデルアップグレード」",
|
|
577
620
|
auto_upgraded: "モデルが自動アップグレードされました:{0} → {1}",
|
|
578
621
|
|
|
579
|
-
settings_title: "モデルアップグレード設定",
|
|
580
622
|
current_config: "現在の設定",
|
|
581
623
|
auto_upgrade_label: "最新モデルを自動使用",
|
|
582
624
|
auto_upgrade_on: "オン",
|
|
583
625
|
auto_upgrade_off: "オフ",
|
|
584
626
|
|
|
585
|
-
menu_toggle_auto_on: "自動アップグレード [● オン]",
|
|
586
|
-
menu_toggle_auto_off: "自動アップグレード [○ オフ]",
|
|
587
627
|
menu_manual_upgrade: "すべてのモデルを手動アップグレード",
|
|
588
|
-
menu_back: "戻る",
|
|
589
628
|
|
|
590
629
|
manual_title: "モデルアップグレード確認",
|
|
591
630
|
manual_checking: "{0}個のAPI設定を確認中...",
|
|
@@ -602,8 +641,47 @@ module.exports = {
|
|
|
602
641
|
manual_stats_skipped: "スキップ:{0}個({1}個は既に最新、{2}個はアップグレード情報なし)"
|
|
603
642
|
},
|
|
604
643
|
hints: {
|
|
605
|
-
auto_mode_info: '
|
|
644
|
+
auto_mode_info: '起動後に Shift+Tab を押して自動実行モードに切り替え',
|
|
606
645
|
active_api_info: 'アクティブ:{0} / {1}',
|
|
607
|
-
no_active_api: 'アクティブなAPIがありません。「API管理」から追加してください。'
|
|
646
|
+
no_active_api: 'アクティブなAPIがありません。「API管理」から追加してください。',
|
|
647
|
+
direct_mode_desc: 'ダイレクト起動モード、アクティブなAPIで即座に起動',
|
|
648
|
+
direct_mode_api_info: 'API: {0} | プロバイダー: {1}',
|
|
649
|
+
direct_mode_api_detail: 'モデル: {0} | 最終使用: {1}',
|
|
650
|
+
direct_mode_change: '起動モードは「設定管理」で変更できます',
|
|
651
|
+
direct_mode_no_active: 'ダイレクト起動モードですが、アクティブなAPIが選択されていません',
|
|
652
|
+
direct_mode_no_active_detail: '{0}個のAPIが設定済み、「サードパーティAPI管理」で選択してください',
|
|
653
|
+
select_mode_desc: '選択モード、起動前にリストからAPIを選択',
|
|
654
|
+
select_mode_change: '起動モードは「設定管理」で変更できます',
|
|
655
|
+
select_mode_api_count: '{0}個のAPI設定済み、アクティブ: {1}',
|
|
656
|
+
select_mode_active_none: 'なし',
|
|
657
|
+
no_api_configured: 'サードパーティAPIが未設定。まず「サードパーティAPI管理」で追加してください',
|
|
658
|
+
api_management_info: '{0}個のAPI設定済み、アクティブ: {1}',
|
|
659
|
+
config_summary: '言語: {0} | 起動モード: {1} | テレメトリ: {2}',
|
|
660
|
+
edit_password_required: '🔒 Password verification required to edit API configuration',
|
|
661
|
+
remove_password_required: '🔒 Password verification required to remove API',
|
|
662
|
+
export_password_required: '🔒 Password verification required to export configuration',
|
|
663
|
+
import_password_required: '🔒 Password verification required to import configuration',
|
|
664
|
+
config: {
|
|
665
|
+
language: '表示言語を切り替え、現在: {0}',
|
|
666
|
+
auto_upgrade: 'サードパーティAPIのモデルバージョンを自動検出・アップグレード',
|
|
667
|
+
upgrade_notification: 'メインメニュー上部にモデルアップグレード通知を表示',
|
|
668
|
+
telemetry: '無効時に DISABLE_TELEMETRY=1 を注入。推奨: OFF',
|
|
669
|
+
launch_mode: 'ダイレクト: アクティブAPIで起動 / 選択: リストから選択して起動'
|
|
670
|
+
},
|
|
671
|
+
api_select: {
|
|
672
|
+
info: 'API: {0}',
|
|
673
|
+
detail: 'プロバイダー: {0} | モデル: {1}',
|
|
674
|
+
usage: '使用回数: {0} | 最終使用: {1}'
|
|
675
|
+
}
|
|
676
|
+
},
|
|
677
|
+
|
|
678
|
+
config: {
|
|
679
|
+
values: {
|
|
680
|
+
on: 'オン',
|
|
681
|
+
off: 'オフ',
|
|
682
|
+
direct_mode: 'ダイレクトモード',
|
|
683
|
+
select_mode: '選択モード',
|
|
684
|
+
recommended_off: 'オフ (推奨)'
|
|
685
|
+
}
|
|
608
686
|
}
|
|
609
687
|
};
|