@kikkimo/claude-launcher 2.5.0 → 3.1.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 +70 -0
- package/README.md +23 -13
- package/claude-launcher +1244 -432
- package/docs/README-zh.md +23 -13
- package/lib/api-manager.js +629 -70
- 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 +229 -13
- package/lib/i18n/locales/en.js +235 -13
- package/lib/i18n/locales/es.js +229 -13
- package/lib/i18n/locales/fr.js +229 -13
- package/lib/i18n/locales/it.js +229 -13
- package/lib/i18n/locales/ja.js +229 -13
- package/lib/i18n/locales/ko.js +229 -13
- package/lib/i18n/locales/pt.js +229 -13
- package/lib/i18n/locales/ru.js +229 -13
- package/lib/i18n/locales/zh-TW.js +229 -13
- package/lib/i18n/locales/zh.js +235 -13
- package/lib/launcher.js +167 -110
- package/lib/presets/providers.js +143 -39
- package/lib/ui/api-editor.js +668 -0
- package/lib/ui/i18n-labels.js +16 -0
- package/lib/ui/interactive-table.js +216 -99
- package/lib/ui/menu.js +79 -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 +65 -4
- package/lib/validators.js +102 -1
- 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/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,27 @@ 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
|
+
no_flicker: "Disattiva sfarfallio schermo",
|
|
42
|
+
back: "Torna al Menu Principale"
|
|
43
|
+
},
|
|
44
|
+
api_select: {
|
|
45
|
+
title: "Seleziona un'API da avviare:",
|
|
30
46
|
back: "Torna al Menu Principale"
|
|
31
47
|
},
|
|
32
48
|
remove_api: {
|
|
@@ -107,7 +123,8 @@ module.exports = {
|
|
|
107
123
|
failed_add: "Impossibile aggiungere l'API: {0}",
|
|
108
124
|
failed_remove: "Impossibile rimuovere l'API: {0}",
|
|
109
125
|
failed_switch: "Impossibile cambiare API: {0}",
|
|
110
|
-
invalid_index: "Indice API non valido"
|
|
126
|
+
invalid_index: "Indice API non valido",
|
|
127
|
+
not_found: "API non trovata: {0}",
|
|
111
128
|
},
|
|
112
129
|
password: {
|
|
113
130
|
empty: "La password non può essere vuota",
|
|
@@ -179,7 +196,16 @@ module.exports = {
|
|
|
179
196
|
exporting: "Esportazione configurazione...",
|
|
180
197
|
importing: "Importazione configurazione...",
|
|
181
198
|
switching_language: "Cambio lingua...",
|
|
182
|
-
initializing: "Inizializzazione..."
|
|
199
|
+
initializing: "Inizializzazione...",
|
|
200
|
+
overridden: "Sovrascritto",
|
|
201
|
+
not_set: "(non impostato)",
|
|
202
|
+
default: "Predefinito",
|
|
203
|
+
enabled: "Attivato",
|
|
204
|
+
disabled: "Disattivato",
|
|
205
|
+
current_value: "Attuale",
|
|
206
|
+
recommended_value: "Consigliato",
|
|
207
|
+
|
|
208
|
+
auto: "(non impostato)",
|
|
183
209
|
},
|
|
184
210
|
|
|
185
211
|
// API details and labels
|
|
@@ -204,6 +230,40 @@ module.exports = {
|
|
|
204
230
|
remove_confirm: "API da rimuovere: {0}",
|
|
205
231
|
cannot_undo: "Questa azione non può essere annullata!",
|
|
206
232
|
removed_info: "Rimossa: {0}"
|
|
233
|
+
},
|
|
234
|
+
edit: {
|
|
235
|
+
select_api: 'Select API to edit',
|
|
236
|
+
current_value: 'Current value: {0}',
|
|
237
|
+
new_value: 'New value: ',
|
|
238
|
+
success: '✅ {0} updated successfully',
|
|
239
|
+
cancelled: 'Edit cancelled',
|
|
240
|
+
back: 'Back',
|
|
241
|
+
field_name: 'Name',
|
|
242
|
+
field_provider: 'Provider',
|
|
243
|
+
field_base_url: 'Base URL',
|
|
244
|
+
field_model: 'Model',
|
|
245
|
+
name_required: 'Name cannot be empty when editing',
|
|
246
|
+
duplicate: 'This change would create a duplicate configuration',
|
|
247
|
+
provider_url_mismatch: 'Provider and URL may be inconsistent',
|
|
248
|
+
provider_url_mismatch_detail: 'Provider: {0} / URL suggests: {1}',
|
|
249
|
+
url_provider_hint: "URL matches provider '{0}' but current provider is '{1}'. Consider updating Provider field.",
|
|
250
|
+
field_model_env_vars: "Variabili d'ambiente del modello",
|
|
251
|
+
field_runtime_env_vars: "Parametri di esecuzione",
|
|
252
|
+
env_inherited: "Ereditato",
|
|
253
|
+
env_disabled: "Disattivato [off]",
|
|
254
|
+
manage_custom_env_vars: "Gestisci variabili personalizzate...",
|
|
255
|
+
no_custom_vars: "(nessuna variabile personalizzata)",
|
|
256
|
+
add_custom_var: "+ Aggiungi variabile",
|
|
257
|
+
enter_custom_key: "Inserisci chiave variabile:",
|
|
258
|
+
enter_custom_value: "Inserisci valore:",
|
|
259
|
+
warn_model_not_in_provider: 'Avviso: Modello "{0}" non trovato nella lista {1}.',
|
|
260
|
+
warn_base_url_not_updated: "Info: URL base non aggiornato ({0}).",
|
|
261
|
+
warn_mixed_provider: "Nota: Provider, URL base e Modello provengono da fornitori diversi.",
|
|
262
|
+
},
|
|
263
|
+
add: {
|
|
264
|
+
duplicate_detected: 'API "{0}" già esistente. Passare alla modifica?',
|
|
265
|
+
jump_to_edit: "Vai alla modifica dell'API esistente",
|
|
266
|
+
cancel: "Annulla",
|
|
207
267
|
}
|
|
208
268
|
},
|
|
209
269
|
|
|
@@ -277,6 +337,10 @@ module.exports = {
|
|
|
277
337
|
good: "Buona",
|
|
278
338
|
strong: "Forte",
|
|
279
339
|
very_strong: "Molto Forte"
|
|
340
|
+
},
|
|
341
|
+
guard: {
|
|
342
|
+
delete: { header: '🗑️ Remove API — Password required to verify identity' },
|
|
343
|
+
edit: { header: '✏️ Edit API — Password required to verify identity' }
|
|
280
344
|
}
|
|
281
345
|
},
|
|
282
346
|
|
|
@@ -324,15 +388,26 @@ module.exports = {
|
|
|
324
388
|
|
|
325
389
|
// Navigation and UI
|
|
326
390
|
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
|
|
391
|
+
use_arrows: "Usa i tasti freccia ↑↓ per navigare, Invio/Spazio per selezionare, Doppio Ctrl+C per uscire",
|
|
392
|
+
use_arrows_esc: "Usa ↑↓ per navigare, Invio per {0}, ESC per annullare",
|
|
393
|
+
use_arrows_page_esc: "←→ Page {0}/{1}, ↑↓ to navigate, Enter to {2}, ESC to cancel",
|
|
329
394
|
use_number_keys: "Usa i tasti numerici per selezionare:",
|
|
330
395
|
currently_active: "API attualmente attiva",
|
|
331
396
|
select_action: "Seleziona un'azione:",
|
|
332
397
|
no_options: "Nessuna opzione disponibile",
|
|
333
398
|
enter_choice: "Inserisci la tua scelta ({0}, o qualsiasi altro tasto per tornare al menu principale):",
|
|
334
399
|
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): "
|
|
400
|
+
enter_choice_prompt: "[>] Inserisci la tua scelta (1-2, o qualsiasi altro tasto per tornare al menu principale): ",
|
|
401
|
+
input_1_to_n_or_q: "Inserisci 1-{0} o q:",
|
|
402
|
+
invalid_selection: "Selezione non valida. Inserisci 1-{0}.",
|
|
403
|
+
enter_to_edit: "Invio per modificare, ESC per tornare",
|
|
404
|
+
enter_to_select: "Invio per selezionare, ESC per tornare",
|
|
405
|
+
action: {
|
|
406
|
+
edit: 'edit',
|
|
407
|
+
remove: 'remove',
|
|
408
|
+
switch: 'switch',
|
|
409
|
+
select: 'select'
|
|
410
|
+
}
|
|
336
411
|
},
|
|
337
412
|
|
|
338
413
|
// Launch process
|
|
@@ -573,19 +648,15 @@ module.exports = {
|
|
|
573
648
|
model_upgrade: {
|
|
574
649
|
notification: "Aggiornamento modello disponibile: {0} → {1}",
|
|
575
650
|
notification_api: "API: {0}",
|
|
576
|
-
notification_hint: "
|
|
651
|
+
notification_hint: "Aggiornamento auto: \"Gestione Configurazione\" / Manuale: \"Gestione API di Terze Parti > Aggiornamento Manuale Modello\"",
|
|
577
652
|
auto_upgraded: "Modello aggiornato automaticamente: {0} → {1}",
|
|
578
653
|
|
|
579
|
-
settings_title: "Impostazioni aggiornamento modello",
|
|
580
654
|
current_config: "Configurazione attuale",
|
|
581
655
|
auto_upgrade_label: "Usa automaticamente l'ultimo modello",
|
|
582
656
|
auto_upgrade_on: "ATTIVO",
|
|
583
657
|
auto_upgrade_off: "DISATTIVO",
|
|
584
658
|
|
|
585
|
-
menu_toggle_auto_on: "Aggiornamento auto [● ATTIVO]",
|
|
586
|
-
menu_toggle_auto_off: "Aggiornamento auto [○ DISATTIVO]",
|
|
587
659
|
menu_manual_upgrade: "Aggiorna tutti i modelli manualmente",
|
|
588
|
-
menu_back: "Indietro",
|
|
589
660
|
|
|
590
661
|
manual_title: "Controllo aggiornamento modello",
|
|
591
662
|
manual_checking: "Controllo {0} configurazioni API...",
|
|
@@ -602,8 +673,153 @@ module.exports = {
|
|
|
602
673
|
manual_stats_skipped: "Saltati: {0} ({1} già aggiornati, {2} senza info aggiornamento)"
|
|
603
674
|
},
|
|
604
675
|
hints: {
|
|
605
|
-
auto_mode_info: '
|
|
676
|
+
auto_mode_info: 'Premi Shift+Tab dopo l\'avvio per passare alla modalità esecuzione automatica',
|
|
606
677
|
active_api_info: 'Attivo: {0} / {1}',
|
|
607
|
-
no_active_api: 'Nessuna API attiva configurata. Vai a "Gestione API" per aggiungerne una.'
|
|
678
|
+
no_active_api: 'Nessuna API attiva configurata. Vai a "Gestione API" per aggiungerne una.',
|
|
679
|
+
direct_mode_desc: 'Modalità avvio diretto, avvia immediatamente con l\'API attiva',
|
|
680
|
+
direct_mode_api_info: 'API: {0} | Provider: {1}',
|
|
681
|
+
direct_mode_api_detail: 'Modello: {0} | Ultimo utilizzo: {1}',
|
|
682
|
+
direct_mode_change: 'La modalità di avvio può essere cambiata in "Gestione Configurazione"',
|
|
683
|
+
direct_mode_no_active: 'Modalità avvio diretto, ma nessuna API attiva selezionata',
|
|
684
|
+
direct_mode_no_active_detail: '{0} API configurate, selezionane una in "Gestione API di Terze Parti"',
|
|
685
|
+
select_mode_desc: 'Modalità selezione, scegli un\'API dalla lista prima dell\'avvio',
|
|
686
|
+
select_mode_change: 'La modalità di avvio può essere cambiata in "Gestione Configurazione"',
|
|
687
|
+
select_mode_api_count: '{0} API configurate, attiva: {1}',
|
|
688
|
+
select_mode_active_none: 'nessuna',
|
|
689
|
+
no_api_configured: 'Nessuna API di terze parti configurata. Aggiungine una in "Gestione API di Terze Parti" prima',
|
|
690
|
+
api_management_info: '{0} API configurate, attiva: {1}',
|
|
691
|
+
config_summary: 'Lingua: {0} | Modalità avvio: {1} | Telemetria: {2} | Sfarfallio: {3}',
|
|
692
|
+
edit_password_required: '🔒 Password verification required to edit API configuration',
|
|
693
|
+
remove_password_required: '🔒 Password verification required to remove API',
|
|
694
|
+
export_password_required: '🔒 Password verification required to export configuration',
|
|
695
|
+
import_password_required: '🔒 Password verification required to import configuration',
|
|
696
|
+
config: {
|
|
697
|
+
language: 'Cambia la lingua di visualizzazione, attuale: {0}',
|
|
698
|
+
auto_upgrade: 'Rileva e aggiorna automaticamente le versioni dei modelli per le API di terze parti',
|
|
699
|
+
upgrade_notification: 'Mostra notifica aggiornamento modello in cima al menu principale',
|
|
700
|
+
telemetry: 'Inietta DISABLE_TELEMETRY=1 quando disabilitato. Raccomandato: OFF',
|
|
701
|
+
launch_mode: 'Diretto: avvia con API attiva / Selezione: scegli dalla lista prima',
|
|
702
|
+
no_flicker: 'Disattiva sfarfallio schermo (CLAUDE_CODE_NO_FLICKER)'
|
|
703
|
+
},
|
|
704
|
+
api_select: {
|
|
705
|
+
info: 'API: {0}',
|
|
706
|
+
detail: 'Provider: {0} | Modello: {1}',
|
|
707
|
+
usage: 'Utilizzo: {0} volte | Ultimo utilizzo: {1}'
|
|
708
|
+
},
|
|
709
|
+
model: {
|
|
710
|
+
desc: 'Versioni del modello per ogni scenario',
|
|
711
|
+
sonnet: 'Corrisponde al livello Sonnet di Claude Code',
|
|
712
|
+
sonnet_detail: "Default model for everyday conversations in Claude Code. Corresponds to env var [ANTHROPIC_DEFAULT_SONNET_MODEL]. Auto-matched to same-generation Sonnet tier",
|
|
713
|
+
opus: 'Corrisponde al livello Opus di Claude Code',
|
|
714
|
+
opus_detail: "Model for complex reasoning and deep analysis tasks. Corresponds to env var [ANTHROPIC_DEFAULT_OPUS_MODEL]. Auto-matched to same-generation Opus tier",
|
|
715
|
+
haiku: 'Corrisponde al livello Haiku di Claude Code',
|
|
716
|
+
haiku_detail: "Lightweight fast model for simple tasks and high-frequency calls. Corresponds to env var [ANTHROPIC_DEFAULT_HAIKU_MODEL]. Auto-matched to same-generation high-speed variant",
|
|
717
|
+
subagent: 'Modello usato per sottoattività e ramificazioni',
|
|
718
|
+
subagent_detail: "Model for subtasks and branch execution. Corresponds to env var [CLAUDE_CODE_SUBAGENT_MODEL]. Auto-filled by model orchestration",
|
|
719
|
+
custom_option: 'ID modello aggiuntivo nel selettore /model',
|
|
720
|
+
custom_option_detail: "Model ID used for API requests to the third-party provider. Corresponds to env var [ANTHROPIC_CUSTOM_MODEL_OPTION]. Auto-filled by model orchestration",
|
|
721
|
+
custom_name: 'Nome visualizzato per modello personalizzato in /model',
|
|
722
|
+
custom_name_detail: "Display name in the /model command selector. Corresponds to env var [ANTHROPIC_CUSTOM_MODEL_OPTION_NAME]. Auto-filled by model orchestration",
|
|
723
|
+
},
|
|
724
|
+
runtime: {
|
|
725
|
+
desc: 'Timeout, attribuzione, comportamento di rete',
|
|
726
|
+
timeout: 'Tempo massimo di attesa per chiamate API',
|
|
727
|
+
timeout_detail: "Maximum wait time for API calls in milliseconds. Corresponds to env var [API_TIMEOUT_MS].",
|
|
728
|
+
attribution: 'Se aggiungere marcatore di attribuzione all\'output',
|
|
729
|
+
attribution_detail: "Controls whether an attribution marker is appended to AI output. Corresponds to env var [CLAUDE_CODE_ATTRIBUTION_HEADER].",
|
|
730
|
+
nonessential: 'Se ridurre richieste di rete non essenziali',
|
|
731
|
+
nonessential_detail: "When enabled, reduces background network requests to lower API overhead. Corresponds to env var [CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC].",
|
|
732
|
+
effort: 'Profondità di ragionamento del modello nelle risposte',
|
|
733
|
+
effort_detail: "Controls reasoning depth in model responses. Corresponds to env var [CLAUDE_CODE_EFFORT_LEVEL]. Valid: low / medium / high / xhigh / max / auto",
|
|
734
|
+
experimental: "Disattiva le funzionalità Beta sperimentali di Anthropic per una maggiore stabilità dell'API",
|
|
735
|
+
experimental_detail: "When enabled, disables Anthropic experimental Beta features. Corresponds to env var [CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS].",
|
|
736
|
+
nonstreaming: 'Se disabilitare il fallback alla modalità non-streaming in caso di errore stream',
|
|
737
|
+
nonstreaming_detail: "When enabled, failed streaming requests will not fall back to non-streaming mode. Corresponds to env var [CLAUDE_CODE_DISABLE_NONSTREAMING_FALLBACK].",
|
|
738
|
+
effort_values: "Valori validi: low, medium, high, xhigh, max, auto",
|
|
739
|
+
source_manual: "Impostato manualmente dall_utente",
|
|
740
|
+
source_provider: "Valore predefinito del provider",
|
|
741
|
+
source_default: "Non impostato, userà il valore predefinito di Claude Code",
|
|
742
|
+
},
|
|
743
|
+
custom: {
|
|
744
|
+
desc: 'Coppie chiave-valore aggiuntive iniettate nell\'ambiente di avvio'
|
|
745
|
+
}
|
|
746
|
+
},
|
|
747
|
+
|
|
748
|
+
page: {
|
|
749
|
+
model_runtime_config: 'Config Modello & Runtime',
|
|
750
|
+
model_config: 'Config Modello',
|
|
751
|
+
runtime_config: 'Config Runtime',
|
|
752
|
+
custom_vars: 'Variabili Personalizzate'
|
|
753
|
+
},
|
|
754
|
+
|
|
755
|
+
action: {
|
|
756
|
+
follow_recommended: 'Segui consigliato',
|
|
757
|
+
force_enable: 'Forza attivazione',
|
|
758
|
+
force_disable: 'Forza disattivazione',
|
|
759
|
+
custom_input: 'Input personalizzato',
|
|
760
|
+
edit_value: 'Modifica valore',
|
|
761
|
+
delete_variable: 'Elimina variabile',
|
|
762
|
+
add_variable: 'Aggiungi variabile',
|
|
763
|
+
finish_create: 'Termina (usa config attuale)',
|
|
764
|
+
cancel_config: "Annulla",
|
|
765
|
+
please_choose: 'Scegli'
|
|
766
|
+
},
|
|
767
|
+
|
|
768
|
+
prompt: {
|
|
769
|
+
empty_to_restore: 'Lascia vuoto per ripristinare il consigliato',
|
|
770
|
+
exit_to_cancel: 'Inserisci exit per annullare'
|
|
771
|
+
},
|
|
772
|
+
|
|
773
|
+
add_api: {
|
|
774
|
+
step_n_of_m: 'Aggiungi API · Passo {0}/{1}',
|
|
775
|
+
confirm_config: 'Conferma Config',
|
|
776
|
+
finish_hint: 'Config consigliata compilata automaticamente in base a provider e modello',
|
|
777
|
+
confirm_page_prompt: "Puoi completare ora con i valori predefiniti consigliati, o selezionare una sezione di configurazione qui sotto per personalizzare",
|
|
778
|
+
duplicate_title: 'Questa connessione API esiste già',
|
|
779
|
+
duplicate_enter_config: 'Vai alla config dell\'API esistente',
|
|
780
|
+
duplicate_back: 'Torna per modificare info di connessione',
|
|
781
|
+
duplicate_draft_discarded: 'Nota: le modifiche alla config ENV fatte durante questo flusso NON saranno unite nell\'API esistente',
|
|
782
|
+
duplicate_race_lost: 'L\'API appena creata è stata presa da un altro processo, bozza attuale scartata',
|
|
783
|
+
partial_failure: 'Alcune scritture di config ENV sono fallite, verificare manualmente',
|
|
784
|
+
recommended_models: 'Modelli consigliati'
|
|
785
|
+
},
|
|
786
|
+
|
|
787
|
+
summary: {
|
|
788
|
+
x_items: '{0} elementi'
|
|
789
|
+
},
|
|
790
|
+
|
|
791
|
+
// Config label display names (used in env editing menus)
|
|
792
|
+
config_labels: {
|
|
793
|
+
model: {
|
|
794
|
+
ANTHROPIC_DEFAULT_SONNET_MODEL: 'Modello standard (Sonnet)',
|
|
795
|
+
ANTHROPIC_DEFAULT_OPUS_MODEL: 'Modello pesante (Opus)',
|
|
796
|
+
ANTHROPIC_DEFAULT_HAIKU_MODEL: 'Modello veloce (Haiku)',
|
|
797
|
+
CLAUDE_CODE_SUBAGENT_MODEL: 'Modello subagente',
|
|
798
|
+
ANTHROPIC_CUSTOM_MODEL_OPTION: 'Modello personalizzato',
|
|
799
|
+
ANTHROPIC_CUSTOM_MODEL_OPTION_NAME: 'Nome modello personalizzato',
|
|
800
|
+
},
|
|
801
|
+
runtime: {
|
|
802
|
+
API_TIMEOUT_MS: 'Timeout richieste',
|
|
803
|
+
CLAUDE_CODE_ATTRIBUTION_HEADER: 'Attribuzione output',
|
|
804
|
+
CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: 'Riduci traffico non essenziale',
|
|
805
|
+
CLAUDE_CODE_EFFORT_LEVEL: 'Livello di ragionamento',
|
|
806
|
+
CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS: 'Disattiva funzioni sperimentali',
|
|
807
|
+
CLAUDE_CODE_DISABLE_NONSTREAMING_FALLBACK: 'Disattiva fallback non-streaming',
|
|
808
|
+
},
|
|
809
|
+
},
|
|
810
|
+
|
|
811
|
+
confirm: {
|
|
812
|
+
delete_variable: 'Eliminare questa variabile? (s/N)'
|
|
813
|
+
},
|
|
814
|
+
|
|
815
|
+
config: {
|
|
816
|
+
values: {
|
|
817
|
+
on: 'ATTIVO',
|
|
818
|
+
off: 'DISATTIVO',
|
|
819
|
+
direct_mode: 'Modalità diretta',
|
|
820
|
+
select_mode: 'Modalità selezione',
|
|
821
|
+
recommended_off: 'DISATTIVO (Raccomandato)',
|
|
822
|
+
recommended_on: 'Attivo (consigliato)'
|
|
823
|
+
}
|
|
608
824
|
}
|
|
609
825
|
};
|
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,27 @@ 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
|
+
no_flicker: "画面のちらつきを無効化",
|
|
42
|
+
back: "メインメニューに戻る"
|
|
43
|
+
},
|
|
44
|
+
api_select: {
|
|
45
|
+
title: "起動するAPIを選択:",
|
|
30
46
|
back: "メインメニューに戻る"
|
|
31
47
|
},
|
|
32
48
|
remove_api: {
|
|
@@ -107,7 +123,8 @@ module.exports = {
|
|
|
107
123
|
failed_add: "API追加に失敗:{0}",
|
|
108
124
|
failed_remove: "API削除に失敗:{0}",
|
|
109
125
|
failed_switch: "API切り替えに失敗:{0}",
|
|
110
|
-
invalid_index: "無効なAPIインデックス"
|
|
126
|
+
invalid_index: "無効なAPIインデックス",
|
|
127
|
+
not_found: "APIが見つかりません: {0}",
|
|
111
128
|
},
|
|
112
129
|
password: {
|
|
113
130
|
empty: "パスワードを空にすることはできません",
|
|
@@ -179,7 +196,16 @@ module.exports = {
|
|
|
179
196
|
exporting: "設定をエクスポート中...",
|
|
180
197
|
importing: "設定をインポート中...",
|
|
181
198
|
switching_language: "言語を切り替え中...",
|
|
182
|
-
initializing: "初期化中..."
|
|
199
|
+
initializing: "初期化中...",
|
|
200
|
+
overridden: "上書き済み",
|
|
201
|
+
not_set: "(未設定)",
|
|
202
|
+
default: "デフォルト",
|
|
203
|
+
enabled: "有効",
|
|
204
|
+
disabled: "無効",
|
|
205
|
+
current_value: "現在の値",
|
|
206
|
+
recommended_value: "推奨",
|
|
207
|
+
|
|
208
|
+
auto: "(未設定)",
|
|
183
209
|
},
|
|
184
210
|
|
|
185
211
|
// API詳細とラベル
|
|
@@ -204,6 +230,40 @@ module.exports = {
|
|
|
204
230
|
remove_confirm: "削除するAPI:{0}",
|
|
205
231
|
cannot_undo: "この操作は元に戻せません!",
|
|
206
232
|
removed_info: "削除されました:{0}"
|
|
233
|
+
},
|
|
234
|
+
edit: {
|
|
235
|
+
select_api: 'Select API to edit',
|
|
236
|
+
current_value: 'Current value: {0}',
|
|
237
|
+
new_value: 'New value: ',
|
|
238
|
+
success: '✅ {0} updated successfully',
|
|
239
|
+
cancelled: 'Edit cancelled',
|
|
240
|
+
back: 'Back',
|
|
241
|
+
field_name: 'Name',
|
|
242
|
+
field_provider: 'Provider',
|
|
243
|
+
field_base_url: 'Base URL',
|
|
244
|
+
field_model: 'Model',
|
|
245
|
+
name_required: 'Name cannot be empty when editing',
|
|
246
|
+
duplicate: 'This change would create a duplicate configuration',
|
|
247
|
+
provider_url_mismatch: 'Provider and URL may be inconsistent',
|
|
248
|
+
provider_url_mismatch_detail: 'Provider: {0} / URL suggests: {1}',
|
|
249
|
+
url_provider_hint: "URL matches provider '{0}' but current provider is '{1}'. Consider updating Provider field.",
|
|
250
|
+
field_model_env_vars: 'モデル環境変数',
|
|
251
|
+
field_runtime_env_vars: '実行パラメータ',
|
|
252
|
+
env_inherited: '継承',
|
|
253
|
+
env_disabled: '無効 [off]',
|
|
254
|
+
manage_custom_env_vars: 'カスタム変数を管理...',
|
|
255
|
+
no_custom_vars: '(カスタム変数なし)',
|
|
256
|
+
add_custom_var: '+ カスタム変数を追加',
|
|
257
|
+
enter_custom_key: '環境変数キーを入力:',
|
|
258
|
+
enter_custom_value: '値を入力:',
|
|
259
|
+
warn_model_not_in_provider: '警告: モデル "{0}" が {1} のリストに見つかりません。',
|
|
260
|
+
warn_base_url_not_updated: '情報: ベースURLは自動更新されませんでした ({0})。',
|
|
261
|
+
warn_mixed_provider: '注意: プロバイダ、ベースURL、モデルが異なる提供元です。',
|
|
262
|
+
},
|
|
263
|
+
add: {
|
|
264
|
+
duplicate_detected: 'API "{0}" は既に存在します。実行パラメータを編集しますか?',
|
|
265
|
+
jump_to_edit: '既存のAPIを編集',
|
|
266
|
+
cancel: 'キャンセル',
|
|
207
267
|
}
|
|
208
268
|
},
|
|
209
269
|
|
|
@@ -277,6 +337,10 @@ module.exports = {
|
|
|
277
337
|
good: "良好",
|
|
278
338
|
strong: "強い",
|
|
279
339
|
very_strong: "非常に強い"
|
|
340
|
+
},
|
|
341
|
+
guard: {
|
|
342
|
+
delete: { header: '🗑️ Remove API — Password required to verify identity' },
|
|
343
|
+
edit: { header: '✏️ Edit API — Password required to verify identity' }
|
|
280
344
|
}
|
|
281
345
|
},
|
|
282
346
|
|
|
@@ -324,15 +388,26 @@ module.exports = {
|
|
|
324
388
|
|
|
325
389
|
// ナビゲーションとUI
|
|
326
390
|
navigation: {
|
|
327
|
-
use_arrows: "↑↓矢印キーでナビゲート、Enter
|
|
328
|
-
use_arrows_esc: "↑↓でナビゲート、Enterで{0}、ESC
|
|
391
|
+
use_arrows: "↑↓矢印キーでナビゲート、Enter/スペースキーで選択、Ctrl+Cを2回押して終了",
|
|
392
|
+
use_arrows_esc: "↑↓でナビゲート、Enterで{0}、ESCでキャンセル",
|
|
393
|
+
use_arrows_page_esc: "←→ Page {0}/{1}, ↑↓ to navigate, Enter to {2}, ESC to cancel",
|
|
329
394
|
use_number_keys: "数字キーで選択:",
|
|
330
395
|
currently_active: "現在アクティブなAPI",
|
|
331
396
|
select_action: "アクションを選択:",
|
|
332
397
|
no_options: "利用可能なオプションがありません",
|
|
333
398
|
enter_choice: "選択を入力({0}、またはその他のキーでメインメニューに戻る):",
|
|
334
399
|
arrow_keys_not_available: "矢印キーが利用できません。選択番号を入力 (1-{0}):",
|
|
335
|
-
enter_choice_prompt: "[>] 選択を入力 (1-2、またはその他のキーでメインメニューに戻る):"
|
|
400
|
+
enter_choice_prompt: "[>] 選択を入力 (1-2、またはその他のキーでメインメニューに戻る):",
|
|
401
|
+
input_1_to_n_or_q: "1-{0} または q を入力:",
|
|
402
|
+
invalid_selection: "無効な選択です。1-{0} を入力してください。",
|
|
403
|
+
enter_to_edit: "Enterで編集、ESCで戻る",
|
|
404
|
+
enter_to_select: "Enterで選択、ESCで戻る",
|
|
405
|
+
action: {
|
|
406
|
+
edit: 'edit',
|
|
407
|
+
remove: 'remove',
|
|
408
|
+
switch: 'switch',
|
|
409
|
+
select: 'select'
|
|
410
|
+
}
|
|
336
411
|
},
|
|
337
412
|
|
|
338
413
|
// 起動プロセス
|
|
@@ -573,19 +648,15 @@ module.exports = {
|
|
|
573
648
|
model_upgrade: {
|
|
574
649
|
notification: "モデルアップグレードが利用可能:{0} → {1}",
|
|
575
650
|
notification_api: "API:{0}",
|
|
576
|
-
notification_hint: "
|
|
651
|
+
notification_hint: "自動アップグレード:「設定管理」/ 手動:「サードパーティAPI管理 > 手動モデルアップグレード」",
|
|
577
652
|
auto_upgraded: "モデルが自動アップグレードされました:{0} → {1}",
|
|
578
653
|
|
|
579
|
-
settings_title: "モデルアップグレード設定",
|
|
580
654
|
current_config: "現在の設定",
|
|
581
655
|
auto_upgrade_label: "最新モデルを自動使用",
|
|
582
656
|
auto_upgrade_on: "オン",
|
|
583
657
|
auto_upgrade_off: "オフ",
|
|
584
658
|
|
|
585
|
-
menu_toggle_auto_on: "自動アップグレード [● オン]",
|
|
586
|
-
menu_toggle_auto_off: "自動アップグレード [○ オフ]",
|
|
587
659
|
menu_manual_upgrade: "すべてのモデルを手動アップグレード",
|
|
588
|
-
menu_back: "戻る",
|
|
589
660
|
|
|
590
661
|
manual_title: "モデルアップグレード確認",
|
|
591
662
|
manual_checking: "{0}個のAPI設定を確認中...",
|
|
@@ -602,8 +673,153 @@ module.exports = {
|
|
|
602
673
|
manual_stats_skipped: "スキップ:{0}個({1}個は既に最新、{2}個はアップグレード情報なし)"
|
|
603
674
|
},
|
|
604
675
|
hints: {
|
|
605
|
-
auto_mode_info: '
|
|
676
|
+
auto_mode_info: '起動後に Shift+Tab を押して自動実行モードに切り替え',
|
|
606
677
|
active_api_info: 'アクティブ:{0} / {1}',
|
|
607
|
-
no_active_api: 'アクティブなAPIがありません。「API管理」から追加してください。'
|
|
678
|
+
no_active_api: 'アクティブなAPIがありません。「API管理」から追加してください。',
|
|
679
|
+
direct_mode_desc: 'ダイレクト起動モード、アクティブなAPIで即座に起動',
|
|
680
|
+
direct_mode_api_info: 'API: {0} | プロバイダー: {1}',
|
|
681
|
+
direct_mode_api_detail: 'モデル: {0} | 最終使用: {1}',
|
|
682
|
+
direct_mode_change: '起動モードは「設定管理」で変更できます',
|
|
683
|
+
direct_mode_no_active: 'ダイレクト起動モードですが、アクティブなAPIが選択されていません',
|
|
684
|
+
direct_mode_no_active_detail: '{0}個のAPIが設定済み、「サードパーティAPI管理」で選択してください',
|
|
685
|
+
select_mode_desc: '選択モード、起動前にリストからAPIを選択',
|
|
686
|
+
select_mode_change: '起動モードは「設定管理」で変更できます',
|
|
687
|
+
select_mode_api_count: '{0}個のAPI設定済み、アクティブ: {1}',
|
|
688
|
+
select_mode_active_none: 'なし',
|
|
689
|
+
no_api_configured: 'サードパーティAPIが未設定。まず「サードパーティAPI管理」で追加してください',
|
|
690
|
+
api_management_info: '{0}個のAPI設定済み、アクティブ: {1}',
|
|
691
|
+
config_summary: '言語: {0} | 起動モード: {1} | テレメトリ: {2} | ちらつき無効: {3}',
|
|
692
|
+
edit_password_required: '🔒 Password verification required to edit API configuration',
|
|
693
|
+
remove_password_required: '🔒 Password verification required to remove API',
|
|
694
|
+
export_password_required: '🔒 Password verification required to export configuration',
|
|
695
|
+
import_password_required: '🔒 Password verification required to import configuration',
|
|
696
|
+
config: {
|
|
697
|
+
language: '表示言語を切り替え、現在: {0}',
|
|
698
|
+
auto_upgrade: 'サードパーティAPIのモデルバージョンを自動検出・アップグレード',
|
|
699
|
+
upgrade_notification: 'メインメニュー上部にモデルアップグレード通知を表示',
|
|
700
|
+
telemetry: '無効時に DISABLE_TELEMETRY=1 を注入。推奨: OFF',
|
|
701
|
+
launch_mode: 'ダイレクト: アクティブAPIで起動 / 選択: リストから選択して起動',
|
|
702
|
+
no_flicker: '画面のちらつきを無効化 (CLAUDE_CODE_NO_FLICKER)'
|
|
703
|
+
},
|
|
704
|
+
api_select: {
|
|
705
|
+
info: 'API: {0}',
|
|
706
|
+
detail: 'プロバイダー: {0} | モデル: {1}',
|
|
707
|
+
usage: '使用回数: {0} | 最終使用: {1}'
|
|
708
|
+
},
|
|
709
|
+
model: {
|
|
710
|
+
desc: '各シナリオで使用するモデルバージョン',
|
|
711
|
+
sonnet: 'Claude Code の Sonnet ティアに対応',
|
|
712
|
+
sonnet_detail: "Default model for everyday conversations in Claude Code. Corresponds to env var [ANTHROPIC_DEFAULT_SONNET_MODEL]. Auto-matched to same-generation Sonnet tier",
|
|
713
|
+
opus: 'Claude Code の Opus ティアに対応',
|
|
714
|
+
opus_detail: "Model for complex reasoning and deep analysis tasks. Corresponds to env var [ANTHROPIC_DEFAULT_OPUS_MODEL]. Auto-matched to same-generation Opus tier",
|
|
715
|
+
haiku: 'Claude Code の Haiku ティアに対応',
|
|
716
|
+
haiku_detail: "Lightweight fast model for simple tasks and high-frequency calls. Corresponds to env var [ANTHROPIC_DEFAULT_HAIKU_MODEL]. Auto-matched to same-generation high-speed variant",
|
|
717
|
+
subagent: 'サブタスクやブランチ実行時に使用するモデル',
|
|
718
|
+
subagent_detail: "Model for subtasks and branch execution. Corresponds to env var [CLAUDE_CODE_SUBAGENT_MODEL]. Auto-filled by model orchestration",
|
|
719
|
+
custom_option: '/model セレクターに追加するモデル ID',
|
|
720
|
+
custom_option_detail: "Model ID used for API requests to the third-party provider. Corresponds to env var [ANTHROPIC_CUSTOM_MODEL_OPTION]. Auto-filled by model orchestration",
|
|
721
|
+
custom_name: '/model でのカスタムモデルの表示名',
|
|
722
|
+
custom_name_detail: "Display name in the /model command selector. Corresponds to env var [ANTHROPIC_CUSTOM_MODEL_OPTION_NAME]. Auto-filled by model orchestration",
|
|
723
|
+
},
|
|
724
|
+
runtime: {
|
|
725
|
+
desc: 'タイムアウト、アトリビューション、ネットワーク動作の切り替え',
|
|
726
|
+
timeout: 'API呼び出しの最大待機時間',
|
|
727
|
+
timeout_detail: "Maximum wait time for API calls in milliseconds. Corresponds to env var [API_TIMEOUT_MS].",
|
|
728
|
+
attribution: '出力にアトリビューションマーカーを付与するか',
|
|
729
|
+
attribution_detail: "Controls whether an attribution marker is appended to AI output. Corresponds to env var [CLAUDE_CODE_ATTRIBUTION_HEADER].",
|
|
730
|
+
nonessential: '非必須ネットワークリクエストを減らすか',
|
|
731
|
+
nonessential_detail: "When enabled, reduces background network requests to lower API overhead. Corresponds to env var [CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC].",
|
|
732
|
+
effort: 'モデルが回答に投入する推論の深さ',
|
|
733
|
+
effort_detail: "Controls reasoning depth in model responses. Corresponds to env var [CLAUDE_CODE_EFFORT_LEVEL]. Valid: low / medium / high / xhigh / max / auto",
|
|
734
|
+
experimental: 'Anthropicの実験的Beta機能を無効化し、APIの安定性を向上させます',
|
|
735
|
+
experimental_detail: "When enabled, disables Anthropic experimental Beta features. Corresponds to env var [CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS].",
|
|
736
|
+
nonstreaming: 'ストリーム失敗時の非ストリーミングフォールバックを無効にするか',
|
|
737
|
+
nonstreaming_detail: "When enabled, failed streaming requests will not fall back to non-streaming mode. Corresponds to env var [CLAUDE_CODE_DISABLE_NONSTREAMING_FALLBACK].",
|
|
738
|
+
effort_values: "有効な値: low, medium, high, xhigh, max, auto",
|
|
739
|
+
source_manual: "ユーザーが手動で設定",
|
|
740
|
+
source_provider: "プロバイダ推奨デフォルト値",
|
|
741
|
+
source_default: "未設定、Claude Code内蔵デフォルトを使用",
|
|
742
|
+
},
|
|
743
|
+
custom: {
|
|
744
|
+
desc: '起動環境に注入する追加のキーと値のペア'
|
|
745
|
+
}
|
|
746
|
+
},
|
|
747
|
+
|
|
748
|
+
page: {
|
|
749
|
+
model_runtime_config: 'モデル&ランタイム設定',
|
|
750
|
+
model_config: 'モデル設定',
|
|
751
|
+
runtime_config: 'ランタイム設定',
|
|
752
|
+
custom_vars: 'カスタム変数'
|
|
753
|
+
},
|
|
754
|
+
|
|
755
|
+
action: {
|
|
756
|
+
follow_recommended: '推奨に従う',
|
|
757
|
+
force_enable: '強制有効',
|
|
758
|
+
force_disable: '強制無効',
|
|
759
|
+
custom_input: 'カスタム入力',
|
|
760
|
+
edit_value: '値を編集',
|
|
761
|
+
delete_variable: '変数を削除',
|
|
762
|
+
add_variable: '変数を追加',
|
|
763
|
+
finish_create: '完了(現在の設定を使用)',
|
|
764
|
+
cancel_config: "キャンセル",
|
|
765
|
+
please_choose: '選択してください'
|
|
766
|
+
},
|
|
767
|
+
|
|
768
|
+
prompt: {
|
|
769
|
+
empty_to_restore: '空のままEnterで推奨値に復元',
|
|
770
|
+
exit_to_cancel: 'exitと入力してキャンセル'
|
|
771
|
+
},
|
|
772
|
+
|
|
773
|
+
add_api: {
|
|
774
|
+
step_n_of_m: 'API追加 · ステップ {0}/{1}',
|
|
775
|
+
confirm_config: '設定確認',
|
|
776
|
+
finish_hint: 'プロバイダーとモデルに基づいて推奨設定を自動入力しました',
|
|
777
|
+
confirm_page_prompt: "推奨デフォルト値で今すぐ作成を完了するか、下の設定セクションを選択してカスタマイズできます",
|
|
778
|
+
duplicate_title: 'このAPI接続は既に存在します',
|
|
779
|
+
duplicate_enter_config: '既存のAPI設定へ移動',
|
|
780
|
+
duplicate_back: '接続情報の修正に戻る',
|
|
781
|
+
duplicate_draft_discarded: '注意:この追加フロー中に行ったENV設定の変更は、既存のAPIには自動マージされません',
|
|
782
|
+
duplicate_race_lost: '新しく作成されたAPIが別のプロセスに占有されました。現在の下書きは破棄されました',
|
|
783
|
+
partial_failure: '一部のENV設定の書き込みに失敗しました。手動で確認してください',
|
|
784
|
+
recommended_models: '推奨モデル'
|
|
785
|
+
},
|
|
786
|
+
|
|
787
|
+
summary: {
|
|
788
|
+
x_items: '{0}件'
|
|
789
|
+
},
|
|
790
|
+
|
|
791
|
+
// Config label display names (used in env editing menus)
|
|
792
|
+
config_labels: {
|
|
793
|
+
model: {
|
|
794
|
+
ANTHROPIC_DEFAULT_SONNET_MODEL: '通常モデル(Sonnet)',
|
|
795
|
+
ANTHROPIC_DEFAULT_OPUS_MODEL: '高性能モデル(Opus)',
|
|
796
|
+
ANTHROPIC_DEFAULT_HAIKU_MODEL: '高速モデル(Haiku)',
|
|
797
|
+
CLAUDE_CODE_SUBAGENT_MODEL: 'サブエージェントモデル',
|
|
798
|
+
ANTHROPIC_CUSTOM_MODEL_OPTION: 'カスタムモデル',
|
|
799
|
+
ANTHROPIC_CUSTOM_MODEL_OPTION_NAME: 'カスタムモデル名',
|
|
800
|
+
},
|
|
801
|
+
runtime: {
|
|
802
|
+
API_TIMEOUT_MS: 'リクエストタイムアウト',
|
|
803
|
+
CLAUDE_CODE_ATTRIBUTION_HEADER: '出力帰属表示',
|
|
804
|
+
CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: '非必須トラフィックの削減',
|
|
805
|
+
CLAUDE_CODE_EFFORT_LEVEL: '推論強度',
|
|
806
|
+
CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS: '実験的機能の無効化',
|
|
807
|
+
CLAUDE_CODE_DISABLE_NONSTREAMING_FALLBACK: '非ストリーミングフォールバックの無効化',
|
|
808
|
+
},
|
|
809
|
+
},
|
|
810
|
+
|
|
811
|
+
confirm: {
|
|
812
|
+
delete_variable: 'この変数を削除しますか?(y/N)'
|
|
813
|
+
},
|
|
814
|
+
|
|
815
|
+
config: {
|
|
816
|
+
values: {
|
|
817
|
+
on: 'オン',
|
|
818
|
+
off: 'オフ',
|
|
819
|
+
direct_mode: 'ダイレクトモード',
|
|
820
|
+
select_mode: '選択モード',
|
|
821
|
+
recommended_off: 'オフ (推奨)',
|
|
822
|
+
recommended_on: 'オン (推奨)'
|
|
823
|
+
}
|
|
608
824
|
}
|
|
609
825
|
};
|