@kikkimo/claude-launcher 2.4.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 +71 -0
- package/README.md +32 -17
- package/claude-launcher +638 -393
- package/docs/README-zh.md +32 -17
- 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 +93 -9
- package/lib/i18n/locales/en.js +93 -9
- package/lib/i18n/locales/es.js +93 -9
- package/lib/i18n/locales/fr.js +93 -9
- package/lib/i18n/locales/it.js +93 -9
- package/lib/i18n/locales/ja.js +93 -9
- package/lib/i18n/locales/ko.js +93 -9
- package/lib/i18n/locales/pt.js +93 -9
- package/lib/i18n/locales/ru.js +93 -9
- package/lib/i18n/locales/zh-TW.js +93 -9
- package/lib/i18n/locales/zh.js +93 -9
- package/lib/launcher.js +131 -93
- package/lib/presets/providers.js +39 -18
- package/lib/ui/api-editor.js +210 -0
- package/lib/ui/interactive-table.js +216 -99
- package/lib/ui/menu.js +78 -55
- 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/lib/i18n/locales/it.js
CHANGED
|
@@ -10,10 +10,11 @@ module.exports = {
|
|
|
10
10
|
title: "Menu Principale",
|
|
11
11
|
launch_default: "Avvia Claude Code",
|
|
12
12
|
launch_skip: "Avvia Claude Code (Salta Automaticamente Permessi)",
|
|
13
|
+
launch_auto_mode: "Avvia Claude Code (Abilita modalita automatica)",
|
|
13
14
|
launch_api: "Avvia Claude Code con API di Terze Parti",
|
|
14
15
|
launch_api_skip: "Avvia Claude Code con API di Terze Parti (Salta Automaticamente Permessi)",
|
|
15
16
|
api_management: "Gestione API di Terze Parti",
|
|
16
|
-
|
|
17
|
+
config_management: "Gestione Configurazione",
|
|
17
18
|
version_check: "Controllo Aggiornamenti Versione",
|
|
18
19
|
exit: "Esci"
|
|
19
20
|
},
|
|
@@ -21,11 +22,26 @@ module.exports = {
|
|
|
21
22
|
title: "Gestione API di Terze Parti",
|
|
22
23
|
add_new: "Aggiungi Nuova API di Terze Parti",
|
|
23
24
|
remove: "Rimuovi API",
|
|
25
|
+
edit: "Edit API",
|
|
24
26
|
switch: "Cambia API Attiva",
|
|
25
27
|
statistics: "Visualizza Statistiche API",
|
|
26
28
|
export: "Esporta Configurazione",
|
|
27
29
|
import: "Importa Configurazione",
|
|
28
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:",
|
|
29
45
|
back: "Torna al Menu Principale"
|
|
30
46
|
},
|
|
31
47
|
remove_api: {
|
|
@@ -203,6 +219,23 @@ module.exports = {
|
|
|
203
219
|
remove_confirm: "API da rimuovere: {0}",
|
|
204
220
|
cannot_undo: "Questa azione non può essere annullata!",
|
|
205
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."
|
|
206
239
|
}
|
|
207
240
|
},
|
|
208
241
|
|
|
@@ -276,6 +309,10 @@ module.exports = {
|
|
|
276
309
|
good: "Buona",
|
|
277
310
|
strong: "Forte",
|
|
278
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' }
|
|
279
316
|
}
|
|
280
317
|
},
|
|
281
318
|
|
|
@@ -323,15 +360,22 @@ module.exports = {
|
|
|
323
360
|
|
|
324
361
|
// Navigation and UI
|
|
325
362
|
navigation: {
|
|
326
|
-
use_arrows: "Usa i tasti freccia ↑↓ per navigare, Invio per selezionare, Doppio Ctrl+C per uscire",
|
|
327
|
-
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",
|
|
328
366
|
use_number_keys: "Usa i tasti numerici per selezionare:",
|
|
329
367
|
currently_active: "API attualmente attiva",
|
|
330
368
|
select_action: "Seleziona un'azione:",
|
|
331
369
|
no_options: "Nessuna opzione disponibile",
|
|
332
370
|
enter_choice: "Inserisci la tua scelta ({0}, o qualsiasi altro tasto per tornare al menu principale):",
|
|
333
371
|
arrow_keys_not_available: "Tasti freccia non disponibili. Inserisci numero selezione (1-{0}):",
|
|
334
|
-
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
|
+
}
|
|
335
379
|
},
|
|
336
380
|
|
|
337
381
|
// Launch process
|
|
@@ -572,19 +616,15 @@ module.exports = {
|
|
|
572
616
|
model_upgrade: {
|
|
573
617
|
notification: "Aggiornamento modello disponibile: {0} → {1}",
|
|
574
618
|
notification_api: "API: {0}",
|
|
575
|
-
notification_hint: "
|
|
619
|
+
notification_hint: "Aggiornamento auto: \"Gestione Configurazione\" / Manuale: \"Gestione API di Terze Parti > Aggiornamento Manuale Modello\"",
|
|
576
620
|
auto_upgraded: "Modello aggiornato automaticamente: {0} → {1}",
|
|
577
621
|
|
|
578
|
-
settings_title: "Impostazioni aggiornamento modello",
|
|
579
622
|
current_config: "Configurazione attuale",
|
|
580
623
|
auto_upgrade_label: "Usa automaticamente l'ultimo modello",
|
|
581
624
|
auto_upgrade_on: "ATTIVO",
|
|
582
625
|
auto_upgrade_off: "DISATTIVO",
|
|
583
626
|
|
|
584
|
-
menu_toggle_auto_on: "Aggiornamento auto [● ATTIVO]",
|
|
585
|
-
menu_toggle_auto_off: "Aggiornamento auto [○ DISATTIVO]",
|
|
586
627
|
menu_manual_upgrade: "Aggiorna tutti i modelli manualmente",
|
|
587
|
-
menu_back: "Indietro",
|
|
588
628
|
|
|
589
629
|
manual_title: "Controllo aggiornamento modello",
|
|
590
630
|
manual_checking: "Controllo {0} configurazioni API...",
|
|
@@ -599,5 +639,49 @@ module.exports = {
|
|
|
599
639
|
manual_complete: "Aggiornamento completato!",
|
|
600
640
|
manual_stats_upgraded: "Aggiornati: {0}",
|
|
601
641
|
manual_stats_skipped: "Saltati: {0} ({1} già aggiornati, {2} senza info aggiornamento)"
|
|
642
|
+
},
|
|
643
|
+
hints: {
|
|
644
|
+
auto_mode_info: 'Premi Shift+Tab dopo l\'avvio per passare alla modalità esecuzione automatica',
|
|
645
|
+
active_api_info: 'Attivo: {0} / {1}',
|
|
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
|
+
}
|
|
602
686
|
}
|
|
603
687
|
};
|
package/lib/i18n/locales/ja.js
CHANGED
|
@@ -10,10 +10,11 @@ module.exports = {
|
|
|
10
10
|
title: "メインメニュー",
|
|
11
11
|
launch_default: "Claude Codeを起動",
|
|
12
12
|
launch_skip: "Claude Codeを起動(権限確認をスキップ)",
|
|
13
|
+
launch_auto_mode: "Claude Code を起動(自動モード有効化)",
|
|
13
14
|
launch_api: "サードパーティAPIでClaude Codeを起動",
|
|
14
15
|
launch_api_skip: "サードパーティAPIでClaude Codeを起動(権限確認をスキップ)",
|
|
15
16
|
api_management: "サードパーティAPI管理",
|
|
16
|
-
|
|
17
|
+
config_management: "設定管理",
|
|
17
18
|
version_check: "バージョン更新確認",
|
|
18
19
|
exit: "終了"
|
|
19
20
|
},
|
|
@@ -21,11 +22,26 @@ module.exports = {
|
|
|
21
22
|
title: "サードパーティAPI管理",
|
|
22
23
|
add_new: "新しいサードパーティAPIを追加",
|
|
23
24
|
remove: "APIを削除",
|
|
25
|
+
edit: "Edit API",
|
|
24
26
|
switch: "アクティブなAPIを切り替え",
|
|
25
27
|
statistics: "API統計を表示",
|
|
26
28
|
export: "設定をエクスポート",
|
|
27
29
|
import: "設定をインポート",
|
|
28
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を選択:",
|
|
29
45
|
back: "メインメニューに戻る"
|
|
30
46
|
},
|
|
31
47
|
remove_api: {
|
|
@@ -203,6 +219,23 @@ module.exports = {
|
|
|
203
219
|
remove_confirm: "削除するAPI:{0}",
|
|
204
220
|
cannot_undo: "この操作は元に戻せません!",
|
|
205
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."
|
|
206
239
|
}
|
|
207
240
|
},
|
|
208
241
|
|
|
@@ -276,6 +309,10 @@ module.exports = {
|
|
|
276
309
|
good: "良好",
|
|
277
310
|
strong: "強い",
|
|
278
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' }
|
|
279
316
|
}
|
|
280
317
|
},
|
|
281
318
|
|
|
@@ -323,15 +360,22 @@ module.exports = {
|
|
|
323
360
|
|
|
324
361
|
// ナビゲーションとUI
|
|
325
362
|
navigation: {
|
|
326
|
-
use_arrows: "↑↓矢印キーでナビゲート、Enter
|
|
327
|
-
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",
|
|
328
366
|
use_number_keys: "数字キーで選択:",
|
|
329
367
|
currently_active: "現在アクティブなAPI",
|
|
330
368
|
select_action: "アクションを選択:",
|
|
331
369
|
no_options: "利用可能なオプションがありません",
|
|
332
370
|
enter_choice: "選択を入力({0}、またはその他のキーでメインメニューに戻る):",
|
|
333
371
|
arrow_keys_not_available: "矢印キーが利用できません。選択番号を入力 (1-{0}):",
|
|
334
|
-
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
|
+
}
|
|
335
379
|
},
|
|
336
380
|
|
|
337
381
|
// 起動プロセス
|
|
@@ -572,19 +616,15 @@ module.exports = {
|
|
|
572
616
|
model_upgrade: {
|
|
573
617
|
notification: "モデルアップグレードが利用可能:{0} → {1}",
|
|
574
618
|
notification_api: "API:{0}",
|
|
575
|
-
notification_hint: "
|
|
619
|
+
notification_hint: "自動アップグレード:「設定管理」/ 手動:「サードパーティAPI管理 > 手動モデルアップグレード」",
|
|
576
620
|
auto_upgraded: "モデルが自動アップグレードされました:{0} → {1}",
|
|
577
621
|
|
|
578
|
-
settings_title: "モデルアップグレード設定",
|
|
579
622
|
current_config: "現在の設定",
|
|
580
623
|
auto_upgrade_label: "最新モデルを自動使用",
|
|
581
624
|
auto_upgrade_on: "オン",
|
|
582
625
|
auto_upgrade_off: "オフ",
|
|
583
626
|
|
|
584
|
-
menu_toggle_auto_on: "自動アップグレード [● オン]",
|
|
585
|
-
menu_toggle_auto_off: "自動アップグレード [○ オフ]",
|
|
586
627
|
menu_manual_upgrade: "すべてのモデルを手動アップグレード",
|
|
587
|
-
menu_back: "戻る",
|
|
588
628
|
|
|
589
629
|
manual_title: "モデルアップグレード確認",
|
|
590
630
|
manual_checking: "{0}個のAPI設定を確認中...",
|
|
@@ -599,5 +639,49 @@ module.exports = {
|
|
|
599
639
|
manual_complete: "アップグレード完了!",
|
|
600
640
|
manual_stats_upgraded: "アップグレード済み:{0}個",
|
|
601
641
|
manual_stats_skipped: "スキップ:{0}個({1}個は既に最新、{2}個はアップグレード情報なし)"
|
|
642
|
+
},
|
|
643
|
+
hints: {
|
|
644
|
+
auto_mode_info: '起動後に Shift+Tab を押して自動実行モードに切り替え',
|
|
645
|
+
active_api_info: 'アクティブ:{0} / {1}',
|
|
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
|
+
}
|
|
602
686
|
}
|
|
603
687
|
};
|
package/lib/i18n/locales/ko.js
CHANGED
|
@@ -10,10 +10,11 @@ module.exports = {
|
|
|
10
10
|
title: "메인 메뉴",
|
|
11
11
|
launch_default: "Claude Code 실행",
|
|
12
12
|
launch_skip: "Claude Code 실행 (권한 확인 자동 건너뛰기)",
|
|
13
|
+
launch_auto_mode: "Claude Code 실행 (자동 모드 활성화)",
|
|
13
14
|
launch_api: "서드파티 API로 Claude Code 실행",
|
|
14
15
|
launch_api_skip: "서드파티 API로 Claude Code 실행 (권한 확인 자동 건너뛰기)",
|
|
15
16
|
api_management: "서드파티 API 관리",
|
|
16
|
-
|
|
17
|
+
config_management: "설정 관리",
|
|
17
18
|
version_check: "버전 업데이트 확인",
|
|
18
19
|
exit: "종료"
|
|
19
20
|
},
|
|
@@ -21,11 +22,26 @@ module.exports = {
|
|
|
21
22
|
title: "서드파티 API 관리",
|
|
22
23
|
add_new: "새 서드파티 API 추가",
|
|
23
24
|
remove: "API 삭제",
|
|
25
|
+
edit: "Edit API",
|
|
24
26
|
switch: "활성 API 전환",
|
|
25
27
|
statistics: "API 통계 보기",
|
|
26
28
|
export: "설정 내보내기",
|
|
27
29
|
import: "설정 가져오기",
|
|
28
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를 선택하세요:",
|
|
29
45
|
back: "메인 메뉴로 돌아가기"
|
|
30
46
|
},
|
|
31
47
|
remove_api: {
|
|
@@ -203,6 +219,23 @@ module.exports = {
|
|
|
203
219
|
remove_confirm: "삭제할 API: {0}",
|
|
204
220
|
cannot_undo: "이 작업은 되돌릴 수 없습니다!",
|
|
205
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."
|
|
206
239
|
}
|
|
207
240
|
},
|
|
208
241
|
|
|
@@ -276,6 +309,10 @@ module.exports = {
|
|
|
276
309
|
good: "양호",
|
|
277
310
|
strong: "강함",
|
|
278
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' }
|
|
279
316
|
}
|
|
280
317
|
},
|
|
281
318
|
|
|
@@ -323,15 +360,22 @@ module.exports = {
|
|
|
323
360
|
|
|
324
361
|
// 내비게이션 및 UI
|
|
325
362
|
navigation: {
|
|
326
|
-
use_arrows: "↑↓ 화살표 키로 탐색, Enter로 선택, Ctrl+C 두 번 눌러 종료",
|
|
327
|
-
use_arrows_esc: "↑↓로 탐색, Enter로 {0}, ESC로
|
|
363
|
+
use_arrows: "↑↓ 화살표 키로 탐색, Enter/Space로 선택, Ctrl+C 두 번 눌러 종료",
|
|
364
|
+
use_arrows_esc: "↑↓로 탐색, Enter로 {0}, ESC로 취소",
|
|
365
|
+
use_arrows_page_esc: "←→ Page {0}/{1}, ↑↓ to navigate, Enter to {2}, ESC to cancel",
|
|
328
366
|
use_number_keys: "숫자 키로 선택:",
|
|
329
367
|
currently_active: "현재 활성 API",
|
|
330
368
|
select_action: "작업을 선택하세요:",
|
|
331
369
|
no_options: "사용 가능한 옵션이 없습니다",
|
|
332
370
|
enter_choice: "선택을 입력하세요 ({0}, 또는 다른 키로 메인 메뉴로 돌아가기):",
|
|
333
371
|
arrow_keys_not_available: "화살표 키를 사용할 수 없습니다. 선택 번호를 입력하세요 (1-{0}):",
|
|
334
|
-
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
|
+
}
|
|
335
379
|
},
|
|
336
380
|
|
|
337
381
|
// 실행 프로세스
|
|
@@ -572,19 +616,15 @@ module.exports = {
|
|
|
572
616
|
model_upgrade: {
|
|
573
617
|
notification: "모델 업그레이드 가능: {0} → {1}",
|
|
574
618
|
notification_api: "API: {0}",
|
|
575
|
-
notification_hint: "\"서드파티 API 관리 > 모델
|
|
619
|
+
notification_hint: "자동 업그레이드: \"설정 관리\" / 수동: \"서드파티 API 관리 > 수동 모델 업그레이드\"",
|
|
576
620
|
auto_upgraded: "모델이 자동 업그레이드되었습니다: {0} → {1}",
|
|
577
621
|
|
|
578
|
-
settings_title: "모델 업그레이드 설정",
|
|
579
622
|
current_config: "현재 설정",
|
|
580
623
|
auto_upgrade_label: "최신 모델 자동 사용",
|
|
581
624
|
auto_upgrade_on: "켜짐",
|
|
582
625
|
auto_upgrade_off: "꺼짐",
|
|
583
626
|
|
|
584
|
-
menu_toggle_auto_on: "자동 업그레이드 [● 켜짐]",
|
|
585
|
-
menu_toggle_auto_off: "자동 업그레이드 [○ 꺼짐]",
|
|
586
627
|
menu_manual_upgrade: "모든 모델 수동 업그레이드",
|
|
587
|
-
menu_back: "뒤로",
|
|
588
628
|
|
|
589
629
|
manual_title: "모델 업그레이드 확인",
|
|
590
630
|
manual_checking: "{0}개의 API 설정 확인 중...",
|
|
@@ -599,5 +639,49 @@ module.exports = {
|
|
|
599
639
|
manual_complete: "업그레이드 완료!",
|
|
600
640
|
manual_stats_upgraded: "업그레이드됨: {0}개",
|
|
601
641
|
manual_stats_skipped: "건너뜀: {0}개 ({1}개 이미 최신, {2}개 업그레이드 정보 없음)"
|
|
642
|
+
},
|
|
643
|
+
hints: {
|
|
644
|
+
auto_mode_info: '실행 후 Shift+Tab을 눌러 자동 실행 모드로 전환',
|
|
645
|
+
active_api_info: '활성: {0} / {1}',
|
|
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
|
+
}
|
|
602
686
|
}
|
|
603
687
|
};
|