@kikkimo/claude-launcher 3.0.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.
@@ -38,6 +38,7 @@ module.exports = {
38
38
  model_upgrade_notification: "Modell-Upgrade-Benachrichtigung",
39
39
  telemetry: "Anthropic Telemetrie",
40
40
  api_launch_mode: "Drittanbieter-API-Startmodus",
41
+ no_flicker: "Bildschirmflimmern deaktivieren",
41
42
  back: "Zurück zum Hauptmenü"
42
43
  },
43
44
  api_select: {
@@ -122,7 +123,8 @@ module.exports = {
122
123
  failed_add: "Hinzufügen der API fehlgeschlagen: {0}",
123
124
  failed_remove: "Entfernen der API fehlgeschlagen: {0}",
124
125
  failed_switch: "Wechsel der API fehlgeschlagen: {0}",
125
- invalid_index: "Ungültiger API-Index"
126
+ invalid_index: "Ungültiger API-Index",
127
+ not_found: "API nicht gefunden: {0}"
126
128
  },
127
129
  password: {
128
130
  empty: "Passwort darf nicht leer sein",
@@ -194,7 +196,16 @@ module.exports = {
194
196
  exporting: "Konfiguration exportieren...",
195
197
  importing: "Konfiguration importieren...",
196
198
  switching_language: "Sprache wechseln...",
197
- initializing: "Initialisieren..."
199
+ initializing: "Initialisieren...",
200
+ overridden: "Überschrieben",
201
+ not_set: "(nicht gesetzt)",
202
+ default: "Standard",
203
+ enabled: "Aktiviert",
204
+ disabled: "Deaktiviert",
205
+ current_value: "Aktuell",
206
+ recommended_value: "Empfohlen",
207
+
208
+ auto: "(nicht gesetzt)",
198
209
  },
199
210
 
200
211
  // API-Details und Labels
@@ -235,7 +246,24 @@ module.exports = {
235
246
  duplicate: 'This change would create a duplicate configuration',
236
247
  provider_url_mismatch: 'Provider and URL may be inconsistent',
237
248
  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."
249
+ url_provider_hint: "URL matches provider '{0}' but current provider is '{1}'. Consider updating Provider field.",
250
+ field_model_env_vars: 'Modell-Umgebungsvariablen',
251
+ field_runtime_env_vars: 'Laufzeitparameter',
252
+ env_inherited: 'Vererbt',
253
+ env_disabled: 'Deaktiviert [off]',
254
+ manage_custom_env_vars: 'Benutzerdefinierte Variablen verwalten...',
255
+ no_custom_vars: '(keine benutzerdefinierten Variablen)',
256
+ add_custom_var: '+ Benutzerdefinierte Variable hinzufügen',
257
+ enter_custom_key: 'Umgebungsvariablen-Schlüssel eingeben:',
258
+ enter_custom_value: 'Wert eingeben:',
259
+ warn_model_not_in_provider: 'Warnung: Modell "{0}" nicht in {1} Modellliste gefunden.',
260
+ warn_base_url_not_updated: 'Info: Basis-URL nicht automatisch aktualisiert ({0}).',
261
+ warn_mixed_provider: 'Hinweis: Provider, Basis-URL und Modell stammen von verschiedenen Anbietern.',
262
+ },
263
+ add: {
264
+ duplicate_detected: 'API "{0}" existiert bereits. Zur Bearbeitung der Laufzeitparameter springen?',
265
+ jump_to_edit: 'Zur vorhandenen API wechseln',
266
+ cancel: 'Abbrechen',
239
267
  }
240
268
  },
241
269
 
@@ -370,6 +398,10 @@ module.exports = {
370
398
  enter_choice: "Geben Sie Ihre Wahl ein ({0}, oder beliebige andere Taste zum Hauptmenü zurückkehren):",
371
399
  arrow_keys_not_available: "Pfeiltasten nicht verfügbar. Geben Sie Auswahlnummer ein (1-{0}):",
372
400
  enter_choice_prompt: "[>] Geben Sie Ihre Wahl ein (1-2, oder beliebige andere Taste zum Hauptmenü zurückkehren): ",
401
+ input_1_to_n_or_q: "1-{0} oder q eingeben:",
402
+ invalid_selection: "Ungültige Auswahl. Bitte 1-{0} eingeben.",
403
+ enter_to_edit: "Enter zum Bearbeiten, ESC zurück",
404
+ enter_to_select: "Enter zum Auswählen, ESC zurück",
373
405
  action: {
374
406
  edit: 'edit',
375
407
  remove: 'remove',
@@ -656,7 +688,7 @@ module.exports = {
656
688
  select_mode_active_none: 'keine',
657
689
  no_api_configured: 'Keine Drittanbieter-APIs konfiguriert. Fügen Sie zuerst eine in "Drittanbieter-API-Verwaltung" hinzu',
658
690
  api_management_info: '{0} APIs konfiguriert, aktiv: {1}',
659
- config_summary: 'Sprache: {0} | Startmodus: {1} | Telemetrie: {2}',
691
+ config_summary: 'Sprache: {0} | Startmodus: {1} | Telemetrie: {2} | Flimmern: {3}',
660
692
  edit_password_required: '🔒 Password verification required to edit API configuration',
661
693
  remove_password_required: '🔒 Password verification required to remove API',
662
694
  export_password_required: '🔒 Password verification required to export configuration',
@@ -666,22 +698,128 @@ module.exports = {
666
698
  auto_upgrade: 'Modellversionen für Drittanbieter-APIs automatisch erkennen und upgraden',
667
699
  upgrade_notification: 'Modell-Upgrade-Benachrichtigung oben im Hauptmenü anzeigen',
668
700
  telemetry: 'Injiziert DISABLE_TELEMETRY=1 wenn deaktiviert. Empfohlen: AUS',
669
- launch_mode: 'Direkt: mit aktiver API starten / Auswahl: zuerst aus Liste wählen'
701
+ launch_mode: 'Direkt: mit aktiver API starten / Auswahl: zuerst aus Liste wählen',
702
+ no_flicker: 'Bildschirmflimmern deaktivieren (CLAUDE_CODE_NO_FLICKER)'
670
703
  },
671
704
  api_select: {
672
705
  info: 'API: {0}',
673
706
  detail: 'Anbieter: {0} | Modell: {1}',
674
707
  usage: 'Nutzung: {0} mal | Zuletzt verwendet: {1}'
708
+ },
709
+ model: {
710
+ desc: 'Modellversionen für jedes Szenario',
711
+ sonnet: 'Entspricht Claude Code Sonnet-Stufe',
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: 'Entspricht Claude Code Opus-Stufe',
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: 'Entspricht Claude Code Haiku-Stufe',
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: 'Modell für Unteraufgaben und Verzweigungen',
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: 'Zusätzliche Modell-ID im /model-Selektor',
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: 'Anzeigename für benutzerdefiniertes Modell 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: 'Zeitüberschreitung, Attribution, Netzwerkverhalten',
726
+ timeout: 'Maximale Wartezeit für API-Aufrufe',
727
+ timeout_detail: "Maximum wait time for API calls in milliseconds. Corresponds to env var [API_TIMEOUT_MS].",
728
+ attribution: 'Attributionsmarkierung an Ausgabe anhängen',
729
+ attribution_detail: "Controls whether an attribution marker is appended to AI output. Corresponds to env var [CLAUDE_CODE_ATTRIBUTION_HEADER].",
730
+ nonessential: 'Nicht-essentielle Netzwerkanfragen reduzieren',
731
+ nonessential_detail: "When enabled, reduces background network requests to lower API overhead. Corresponds to env var [CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC].",
732
+ effort: 'Denktiefe des Modells bei Antworten',
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: 'Deaktiviert experimentelle Beta-Funktionen von Anthropic für verbesserte API-Stabilität',
735
+ experimental_detail: "When enabled, disables Anthropic experimental Beta features. Corresponds to env var [CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS].",
736
+ nonstreaming: 'Fallback auf Nicht-Streaming-Modus bei Stream-Fehler deaktivieren',
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: "Gültige Werte: low, medium, high, xhigh, max, auto",
739
+ source_manual: "Manuell vom Benutzer gesetzt",
740
+ source_provider: "Vom Provider empfohlen",
741
+ source_default: "Nicht gesetzt, verwendet Claude Code-Standard",
742
+ },
743
+ custom: {
744
+ desc: 'Zusätzliche Schlüssel-Wert-Paare für Startumgebung'
675
745
  }
676
746
  },
677
747
 
748
+ page: {
749
+ model_runtime_config: 'Modell- & Laufzeitkonfiguration',
750
+ model_config: 'Modellkonfiguration',
751
+ runtime_config: 'Laufzeitkonfiguration',
752
+ custom_vars: 'Benutzerdefinierte Variablen'
753
+ },
754
+
755
+ action: {
756
+ follow_recommended: 'Empfohlen folgen',
757
+ force_enable: 'Erzwingen aktivieren',
758
+ force_disable: 'Erzwingen deaktivieren',
759
+ custom_input: 'Benutzerdefinierte Eingabe',
760
+ edit_value: 'Wert bearbeiten',
761
+ delete_variable: 'Variable löschen',
762
+ add_variable: 'Variable hinzufügen',
763
+ finish_create: 'Fertig (aktuelle Konfiguration verwenden)',
764
+ cancel_config: "Abbrechen",
765
+ please_choose: 'Bitte wählen'
766
+ },
767
+
768
+ prompt: {
769
+ empty_to_restore: 'Leer lassen um Empfohlen wiederherzustellen',
770
+ exit_to_cancel: 'exit eingeben zum Abbrechen'
771
+ },
772
+
773
+ add_api: {
774
+ step_n_of_m: 'API hinzufügen · Schritt {0}/{1}',
775
+ confirm_config: 'Konfiguration bestätigen',
776
+ finish_hint: 'Empfohlene Konfiguration basierend auf Provider und Modell automatisch ausgefüllt',
777
+ confirm_page_prompt: "Sie können jetzt mit empfohlenen Standardwerten abschließen oder einen Konfigurationsbereich unten zum Anpassen auswählen",
778
+ duplicate_title: 'Diese API-Verbindung existiert bereits',
779
+ duplicate_enter_config: 'Zur existierenden API-Konfiguration',
780
+ duplicate_back: 'Zurück zum Bearbeiten der Verbindungsinformationen',
781
+ duplicate_draft_discarded: 'Hinweis: ENV-Konfigurationsänderungen aus diesem Hinzufügen-Prozess werden NICHT in die bestehende API übernommen',
782
+ duplicate_race_lost: 'Die neu erstellte API wurde von einem anderen Prozess übernommen, aktueller Entwurf verworfen',
783
+ partial_failure: 'Einige ENV-Konfigurationsschreibvorgänge fehlgeschlagen, bitte manuell prüfen',
784
+ recommended_models: 'Empfohlene Modelle'
785
+ },
786
+
787
+ summary: {
788
+ x_items: '{0} Elemente'
789
+ },
790
+
791
+ // Config label display names (used in env editing menus)
792
+ config_labels: {
793
+ model: {
794
+ ANTHROPIC_DEFAULT_SONNET_MODEL: 'Standardmodell (Sonnet)',
795
+ ANTHROPIC_DEFAULT_OPUS_MODEL: 'Hochleistungsmodell (Opus)',
796
+ ANTHROPIC_DEFAULT_HAIKU_MODEL: 'Schnelles Modell (Haiku)',
797
+ CLAUDE_CODE_SUBAGENT_MODEL: 'Subagent-Modell',
798
+ ANTHROPIC_CUSTOM_MODEL_OPTION: 'Benutzerdefiniertes Modell',
799
+ ANTHROPIC_CUSTOM_MODEL_OPTION_NAME: 'Name des Modells',
800
+ },
801
+ runtime: {
802
+ API_TIMEOUT_MS: 'Anfrage-Timeout',
803
+ CLAUDE_CODE_ATTRIBUTION_HEADER: 'Ausgabe-Attribution',
804
+ CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: 'Nicht-essentiellen Verkehr reduzieren',
805
+ CLAUDE_CODE_EFFORT_LEVEL: 'Denkaufwand',
806
+ CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS: 'Experimentelle Funktionen deaktivieren',
807
+ CLAUDE_CODE_DISABLE_NONSTREAMING_FALLBACK: 'Nicht-Streaming-Fallback deaktivieren',
808
+ },
809
+ },
810
+
811
+ confirm: {
812
+ delete_variable: 'Diese Variable löschen? (j/N)'
813
+ },
814
+
678
815
  config: {
679
816
  values: {
680
817
  on: 'AN',
681
818
  off: 'AUS',
682
819
  direct_mode: 'Direktmodus',
683
820
  select_mode: 'Auswahlmodus',
684
- recommended_off: 'AUS (Empfohlen)'
821
+ recommended_off: 'AUS (Empfohlen)',
822
+ recommended_on: 'An (empfohlen)'
685
823
  }
686
824
  }
687
825
  };
@@ -38,6 +38,7 @@ module.exports = {
38
38
  model_upgrade_notification: "Model Upgrade Notification",
39
39
  telemetry: "Anthropic Telemetry",
40
40
  api_launch_mode: "3rd-party API Launch Mode",
41
+ no_flicker: "Disable Screen Flash",
41
42
  back: "Back to Main Menu"
42
43
  },
43
44
  api_select: {
@@ -122,7 +123,8 @@ module.exports = {
122
123
  failed_add: "Failed to add API: {0}",
123
124
  failed_remove: "Failed to remove API: {0}",
124
125
  failed_switch: "Failed to switch API: {0}",
125
- invalid_index: "Invalid API index"
126
+ invalid_index: "Invalid API index",
127
+ not_found: "API not found: {0}",
126
128
  },
127
129
  password: {
128
130
  empty: "Password cannot be empty",
@@ -194,7 +196,16 @@ module.exports = {
194
196
  exporting: "Exporting configuration...",
195
197
  importing: "Importing configuration...",
196
198
  switching_language: "Switching language...",
197
- initializing: "Initializing..."
199
+ initializing: "Initializing...",
200
+ overridden: "Overridden",
201
+ not_set: "(not set)",
202
+ default: "Default",
203
+ enabled: "Enabled",
204
+ disabled: "Disabled",
205
+ current_value: "Current",
206
+ recommended_value: "Recommended",
207
+
208
+ auto: "(not set)",
198
209
  },
199
210
 
200
211
  // API details and labels
@@ -235,7 +246,24 @@ module.exports = {
235
246
  duplicate: 'This change would create a duplicate configuration',
236
247
  provider_url_mismatch: 'Provider and URL may be inconsistent',
237
248
  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."
249
+ url_provider_hint: "URL matches provider '{0}' but current provider is '{1}'. Consider updating Provider field.",
250
+ field_model_env_vars: 'Model Env Variables',
251
+ field_runtime_env_vars: 'Runtime Parameters',
252
+ env_inherited: 'Inherited',
253
+ env_disabled: 'Disabled [off]',
254
+ manage_custom_env_vars: 'Manage Custom Variables...',
255
+ no_custom_vars: '(no custom variables)',
256
+ add_custom_var: '+ Add Custom Variable',
257
+ enter_custom_key: 'Enter environment variable key:',
258
+ enter_custom_value: 'Enter value:',
259
+ warn_model_not_in_provider: 'Warning: Model "{0}" not found in {1} model list.',
260
+ warn_base_url_not_updated: 'Info: Base URL not auto-updated ({0}).',
261
+ warn_mixed_provider: 'Note: Provider, Base URL, and Model are from different vendors.',
262
+ },
263
+ add: {
264
+ duplicate_detected: 'API "{0}" already exists. Jump to edit runtime parameters?',
265
+ jump_to_edit: 'Jump to edit existing API',
266
+ cancel: 'Cancel',
239
267
  }
240
268
  },
241
269
 
@@ -370,6 +398,10 @@ module.exports = {
370
398
  enter_choice: "Enter your choice ({0}, or any other key to return to main menu):",
371
399
  arrow_keys_not_available: "Arrow keys not available. Enter selection number (1-{0}):",
372
400
  enter_choice_prompt: "[>] Enter your choice (1-2, or any other key to return to main menu): ",
401
+ input_1_to_n_or_q: "Enter 1-{0} or q:",
402
+ invalid_selection: "Invalid selection. Please enter 1-{0}.",
403
+ enter_to_edit: "Enter to edit, ESC to go back",
404
+ enter_to_select: "Enter to select, ESC to go back",
373
405
  action: {
374
406
  edit: 'edit',
375
407
  remove: 'remove',
@@ -656,7 +688,7 @@ module.exports = {
656
688
  select_mode_active_none: 'none',
657
689
  no_api_configured: 'No 3rd-party APIs configured. Add one in "3rd-party API Management" first',
658
690
  api_management_info: '{0} APIs configured, active: {1}',
659
- config_summary: 'Language: {0} | Launch Mode: {1} | Telemetry: {2}',
691
+ config_summary: 'Language: {0} | Launch Mode: {1} | Telemetry: {2} | No-Flicker: {3}',
660
692
  edit_password_required: '🔒 Password verification required to edit API configuration',
661
693
  remove_password_required: '🔒 Password verification required to remove API',
662
694
  export_password_required: '🔒 Password verification required to export configuration',
@@ -666,22 +698,134 @@ module.exports = {
666
698
  auto_upgrade: 'Auto detect and upgrade model versions for 3rd-party APIs',
667
699
  upgrade_notification: 'Show model upgrade notification at the top of main menu',
668
700
  telemetry: 'Injects DISABLE_TELEMETRY=1 when disabled. Recommended: OFF',
669
- launch_mode: 'Direct: launch with active API / Select: choose from list first'
701
+ launch_mode: 'Direct: launch with active API / Select: choose from list first',
702
+ no_flicker: 'Disable screen flickering (CLAUDE_CODE_NO_FLICKER)',
670
703
  },
671
704
  api_select: {
672
705
  info: 'API: {0}',
673
706
  detail: 'Provider: {0} | Model: {1}',
674
707
  usage: 'Usage: {0} times | Last used: {1}'
708
+ },
709
+ model: {
710
+ desc: 'Model versions for each scenario',
711
+ sonnet: 'Corresponds to Claude Code Sonnet tier',
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: 'Corresponds to Claude Code Opus tier',
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: 'Corresponds to Claude Code Haiku tier',
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: 'Model used for sub-tasks and branches',
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: 'Extra model ID added to /model selector',
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: 'Display name for custom model 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, attribution, network behavior toggles',
726
+ timeout: 'Max wait time for API calls',
727
+ timeout_detail: "Maximum wait time for API calls in milliseconds. Corresponds to env var [API_TIMEOUT_MS].",
728
+ attribution: 'Whether to append attribution marker to output',
729
+ attribution_detail: "Controls whether an attribution marker is appended to AI output. Corresponds to env var [CLAUDE_CODE_ATTRIBUTION_HEADER].",
730
+ nonessential: 'Whether to reduce non-essential network requests',
731
+ nonessential_detail: "When enabled, reduces background network requests to lower API overhead. Corresponds to env var [CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC].",
732
+ effort: 'Reasoning depth the model invests in responses',
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: 'Disable Anthropic experimental Beta features for improved API stability',
735
+ experimental_detail: "When enabled, disables Anthropic experimental Beta features. Corresponds to env var [CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS].",
736
+ nonstreaming: 'Whether to disable fallback to non-streaming mode on stream failure',
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: "Valid values: low, medium, high, xhigh, max, auto",
739
+ source_manual: "Manually set by user",
740
+ source_provider: "From provider recommended default",
741
+ source_default: "Not set, will use Claude Code built-in default",
742
+ },
743
+ custom: {
744
+ desc: 'Extra key-value pairs injected into launch environment'
675
745
  }
676
746
  },
677
747
 
748
+ // Page titles for env config sections
749
+ page: {
750
+ model_runtime_config: 'Model & Runtime Config',
751
+ model_config: 'Model Config',
752
+ runtime_config: 'Runtime Config',
753
+ custom_vars: 'Custom Variables'
754
+ },
755
+
756
+ // Actions for env config editing
757
+ action: {
758
+ follow_recommended: 'Follow recommended',
759
+ force_enable: 'Force enable',
760
+ force_disable: 'Force disable',
761
+ custom_input: 'Custom input',
762
+ edit_value: 'Edit value',
763
+ delete_variable: 'Delete variable',
764
+ add_variable: 'Add variable',
765
+ finish_create: 'Finish (use current config)',
766
+ cancel_config: "Cancel",
767
+ please_choose: 'Please choose'
768
+ },
769
+
770
+ // Prompts
771
+ prompt: {
772
+ empty_to_restore: 'Enter empty to restore recommended',
773
+ exit_to_cancel: 'Enter exit to cancel'
774
+ },
775
+
776
+ // Add API flow
777
+ add_api: {
778
+ step_n_of_m: 'Add API · Step {0}/{1}',
779
+ confirm_config: 'Confirm Config',
780
+ finish_hint: 'Recommended config auto-filled based on provider and model',
781
+ confirm_page_prompt: "You can finish now with recommended defaults, or select a config section below to customize before creating",
782
+ duplicate_title: 'This API connection already exists',
783
+ duplicate_enter_config: 'Go to existing API config',
784
+ duplicate_back: 'Back to modify connection info',
785
+ duplicate_draft_discarded: 'Note: env config changes made during this add flow will NOT be merged into the existing API',
786
+ duplicate_race_lost: 'The newly created API was taken by another process, current draft discarded',
787
+ partial_failure: 'Some env config writes failed, please check manually',
788
+ recommended_models: 'Recommended models'
789
+ },
790
+
791
+ // Summary
792
+ summary: {
793
+ x_items: '{0} items'
794
+ },
795
+
796
+ // Config label display names (used in env editing menus)
797
+ config_labels: {
798
+ model: {
799
+ ANTHROPIC_DEFAULT_SONNET_MODEL: 'Regular Model (Sonnet)',
800
+ ANTHROPIC_DEFAULT_OPUS_MODEL: 'Heavy Model (Opus)',
801
+ ANTHROPIC_DEFAULT_HAIKU_MODEL: 'Fast Model (Haiku)',
802
+ CLAUDE_CODE_SUBAGENT_MODEL: 'Subagent Model',
803
+ ANTHROPIC_CUSTOM_MODEL_OPTION: 'Custom Model',
804
+ ANTHROPIC_CUSTOM_MODEL_OPTION_NAME: 'Custom Model Name',
805
+ },
806
+ runtime: {
807
+ API_TIMEOUT_MS: 'Request Timeout',
808
+ CLAUDE_CODE_ATTRIBUTION_HEADER: 'Output Attribution',
809
+ CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: 'Reduce Non-Essential Traffic',
810
+ CLAUDE_CODE_EFFORT_LEVEL: 'Reasoning Effort',
811
+ CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS: 'Disable Experimental Features',
812
+ CLAUDE_CODE_DISABLE_NONSTREAMING_FALLBACK: 'Disable Non-Streaming Fallback',
813
+ },
814
+ },
815
+
816
+ // Confirmations
817
+ confirm: {
818
+ delete_variable: 'Delete this variable? (y/N)'
819
+ },
820
+
678
821
  config: {
679
822
  values: {
680
823
  on: 'ON',
681
824
  off: 'OFF',
682
825
  direct_mode: 'Direct Mode',
683
826
  select_mode: 'Select Mode',
684
- recommended_off: 'OFF (Recommended)'
827
+ recommended_off: 'OFF (Recommended)',
828
+ recommended_on: 'On (recommended)'
685
829
  }
686
830
  }
687
831
  };
@@ -38,6 +38,7 @@ module.exports = {
38
38
  model_upgrade_notification: "Notificación de actualización de modelo",
39
39
  telemetry: "Telemetría Anthropic",
40
40
  api_launch_mode: "Modo de inicio de API de terceros",
41
+ no_flicker: "Desactivar parpadeo de pantalla",
41
42
  back: "Volver al menú principal"
42
43
  },
43
44
  api_select: {
@@ -122,7 +123,8 @@ module.exports = {
122
123
  failed_add: "Error al agregar API: {0}",
123
124
  failed_remove: "Error al eliminar API: {0}",
124
125
  failed_switch: "Error al cambiar API: {0}",
125
- invalid_index: "Índice de API inválido"
126
+ invalid_index: "Índice de API inválido",
127
+ not_found: "API no encontrada: {0}"
126
128
  },
127
129
  password: {
128
130
  empty: "La contraseña no puede estar vacía",
@@ -194,7 +196,16 @@ module.exports = {
194
196
  exporting: "Exportando configuración...",
195
197
  importing: "Importando configuración...",
196
198
  switching_language: "Cambiando idioma...",
197
- initializing: "Inicializando..."
199
+ initializing: "Inicializando...",
200
+ overridden: "Sobrescrito",
201
+ not_set: "(no establecido)",
202
+ default: "Predeterminado",
203
+ enabled: "Activado",
204
+ disabled: "Desactivado",
205
+ current_value: "Actual",
206
+ recommended_value: "Recomendado",
207
+
208
+ auto: "(no establecido)",
198
209
  },
199
210
 
200
211
  // Detalles y etiquetas de API
@@ -235,7 +246,24 @@ module.exports = {
235
246
  duplicate: 'This change would create a duplicate configuration',
236
247
  provider_url_mismatch: 'Provider and URL may be inconsistent',
237
248
  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."
249
+ url_provider_hint: "URL matches provider '{0}' but current provider is '{1}'. Consider updating Provider field.",
250
+ field_model_env_vars: 'Variables de entorno del modelo',
251
+ field_runtime_env_vars: 'Parámetros de ejecución',
252
+ env_inherited: 'Heredado',
253
+ env_disabled: 'Desactivado [off]',
254
+ manage_custom_env_vars: 'Gestionar variables personalizadas...',
255
+ no_custom_vars: '(sin variables personalizadas)',
256
+ add_custom_var: '+ Añadir variable personalizada',
257
+ enter_custom_key: 'Ingrese clave de variable de entorno:',
258
+ enter_custom_value: 'Ingrese valor:',
259
+ warn_model_not_in_provider: 'Aviso: Modelo "{0}" no encontrado en la lista de {1}.',
260
+ warn_base_url_not_updated: 'Info: URL base no actualizada automáticamente ({0}).',
261
+ warn_mixed_provider: 'Nota: Provider, URL base y Modelo son de diferentes proveedores.',
262
+ },
263
+ add: {
264
+ duplicate_detected: 'API "{0}" ya existe. ¿Saltar a editar parámetros?',
265
+ jump_to_edit: 'Ir a editar API existente',
266
+ cancel: 'Cancelar',
239
267
  }
240
268
  },
241
269
 
@@ -370,6 +398,10 @@ module.exports = {
370
398
  enter_choice: "Ingrese su elección ({0}, o cualquier otra tecla para volver al menú principal):",
371
399
  arrow_keys_not_available: "Teclas de flecha no disponibles. Ingrese número de selección (1-{0}):",
372
400
  enter_choice_prompt: "[>] Ingrese su elección (1-2, o cualquier otra tecla para volver al menú principal): ",
401
+ input_1_to_n_or_q: "Ingrese 1-{0} o q:",
402
+ invalid_selection: "Selección inválida. Ingrese 1-{0}.",
403
+ enter_to_edit: "Enter para editar, ESC para volver",
404
+ enter_to_select: "Enter para seleccionar, ESC para volver",
373
405
  action: {
374
406
  edit: 'edit',
375
407
  remove: 'remove',
@@ -656,7 +688,7 @@ module.exports = {
656
688
  select_mode_active_none: 'ninguna',
657
689
  no_api_configured: 'No hay APIs de terceros configuradas. Agregue una en "Gestión de API de terceros" primero',
658
690
  api_management_info: '{0} APIs configuradas, activa: {1}',
659
- config_summary: 'Idioma: {0} | Modo de inicio: {1} | Telemetría: {2}',
691
+ config_summary: 'Idioma: {0} | Modo de inicio: {1} | Telemetría: {2} | Sin parpadeo: {3}',
660
692
  edit_password_required: '🔒 Password verification required to edit API configuration',
661
693
  remove_password_required: '🔒 Password verification required to remove API',
662
694
  export_password_required: '🔒 Password verification required to export configuration',
@@ -666,22 +698,128 @@ module.exports = {
666
698
  auto_upgrade: 'Detectar y actualizar automáticamente versiones de modelos para APIs de terceros',
667
699
  upgrade_notification: 'Mostrar notificación de actualización de modelo en la parte superior del menú principal',
668
700
  telemetry: 'Inyecta DISABLE_TELEMETRY=1 cuando está desactivado. Recomendado: OFF',
669
- launch_mode: 'Directo: iniciar con API activa / Selección: elegir de la lista primero'
701
+ launch_mode: 'Directo: iniciar con API activa / Selección: elegir de la lista primero',
702
+ no_flicker: 'Desactivar parpadeo de pantalla (CLAUDE_CODE_NO_FLICKER)'
670
703
  },
671
704
  api_select: {
672
705
  info: 'API: {0}',
673
706
  detail: 'Proveedor: {0} | Modelo: {1}',
674
707
  usage: 'Uso: {0} veces | Último uso: {1}'
708
+ },
709
+ model: {
710
+ desc: 'Versiones de modelo para cada escenario',
711
+ sonnet: 'Corresponde al nivel Sonnet de 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: 'Corresponde al nivel Opus de 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: 'Corresponde al nivel Haiku de 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: 'Modelo usado para subtareas y ramificaciones',
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 de modelo adicional en el selector /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: 'Nombre mostrado para modelo personalizado en /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: 'Tiempo de espera, atribución, comportamiento de red',
726
+ timeout: 'Tiempo máximo de espera para llamadas API',
727
+ timeout_detail: "Maximum wait time for API calls in milliseconds. Corresponds to env var [API_TIMEOUT_MS].",
728
+ attribution: 'Si adjuntar marca de atribución a la salida',
729
+ attribution_detail: "Controls whether an attribution marker is appended to AI output. Corresponds to env var [CLAUDE_CODE_ATTRIBUTION_HEADER].",
730
+ nonessential: 'Si reducir solicitudes de red no esenciales',
731
+ nonessential_detail: "When enabled, reduces background network requests to lower API overhead. Corresponds to env var [CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC].",
732
+ effort: 'Profundidad de razonamiento del modelo en respuestas',
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: 'Desactiva las funciones Beta experimentales de Anthropic para mayor estabilidad de la API',
735
+ experimental_detail: "When enabled, disables Anthropic experimental Beta features. Corresponds to env var [CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS].",
736
+ nonstreaming: 'Si deshabilitar respaldo a modo no-streaming en fallo de 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: "Valores válidos: low, medium, high, xhigh, max, auto",
739
+ source_manual: "Establecido manualmente por el usuario",
740
+ source_provider: "Valor predeterminado del proveedor",
741
+ source_default: "No establecido, usará predeterminado de Claude Code",
742
+ },
743
+ custom: {
744
+ desc: 'Pares clave-valor adicionales inyectados al entorno de lanzamiento'
675
745
  }
676
746
  },
677
747
 
748
+ page: {
749
+ model_runtime_config: 'Config de Modelo y Runtime',
750
+ model_config: 'Config de Modelo',
751
+ runtime_config: 'Config de Runtime',
752
+ custom_vars: 'Variables Personalizadas'
753
+ },
754
+
755
+ action: {
756
+ follow_recommended: 'Seguir recomendado',
757
+ force_enable: 'Forzar activado',
758
+ force_disable: 'Forzar desactivado',
759
+ custom_input: 'Entrada personalizada',
760
+ edit_value: 'Editar valor',
761
+ delete_variable: 'Eliminar variable',
762
+ add_variable: 'Agregar variable',
763
+ finish_create: 'Finalizar (usar config actual)',
764
+ cancel_config: "Cancelar",
765
+ please_choose: 'Por favor elija'
766
+ },
767
+
768
+ prompt: {
769
+ empty_to_restore: 'Dejar vacío para restaurar recomendado',
770
+ exit_to_cancel: 'Ingrese exit para cancelar'
771
+ },
772
+
773
+ add_api: {
774
+ step_n_of_m: 'Agregar API · Paso {0}/{1}',
775
+ confirm_config: 'Confirmar Config',
776
+ finish_hint: 'Config recomendada autocompletada según proveedor y modelo',
777
+ confirm_page_prompt: "Puede finalizar ahora con valores predeterminados recomendados, o seleccionar una sección de configuración abajo para personalizar",
778
+ duplicate_title: 'Esta conexión API ya existe',
779
+ duplicate_enter_config: 'Ir a config de API existente',
780
+ duplicate_back: 'Volver a modificar info de conexión',
781
+ duplicate_draft_discarded: 'Nota: los cambios de config ENV hechos durante este flujo NO se fusionarán en la API existente',
782
+ duplicate_race_lost: 'La API recién creada fue tomada por otro proceso, borrador actual descartado',
783
+ partial_failure: 'Algunas escrituras de config ENV fallaron, verifique manualmente',
784
+ recommended_models: 'Modelos recomendados'
785
+ },
786
+
787
+ summary: {
788
+ x_items: '{0} elementos'
789
+ },
790
+
791
+ // Config label display names (used in env editing menus)
792
+ config_labels: {
793
+ model: {
794
+ ANTHROPIC_DEFAULT_SONNET_MODEL: 'Modelo regular (Sonnet)',
795
+ ANTHROPIC_DEFAULT_OPUS_MODEL: 'Modelo pesado (Opus)',
796
+ ANTHROPIC_DEFAULT_HAIKU_MODEL: 'Modelo rápido (Haiku)',
797
+ CLAUDE_CODE_SUBAGENT_MODEL: 'Modelo subagente',
798
+ ANTHROPIC_CUSTOM_MODEL_OPTION: 'Modelo personalizado',
799
+ ANTHROPIC_CUSTOM_MODEL_OPTION_NAME: 'Nombre modelo personalizado',
800
+ },
801
+ runtime: {
802
+ API_TIMEOUT_MS: 'Tiempo de espera',
803
+ CLAUDE_CODE_ATTRIBUTION_HEADER: 'Atribución de salida',
804
+ CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC: 'Reducir tráfico no esencial',
805
+ CLAUDE_CODE_EFFORT_LEVEL: 'Nivel de esfuerzo',
806
+ CLAUDE_CODE_DISABLE_EXPERIMENTAL_BETAS: 'Desactivar funciones experimentales',
807
+ CLAUDE_CODE_DISABLE_NONSTREAMING_FALLBACK: 'Desactivar fallback no-streaming',
808
+ },
809
+ },
810
+
811
+ confirm: {
812
+ delete_variable: '¿Eliminar esta variable? (s/N)'
813
+ },
814
+
678
815
  config: {
679
816
  values: {
680
817
  on: 'ACTIVADO',
681
818
  off: 'DESACTIVADO',
682
819
  direct_mode: 'Modo directo',
683
820
  select_mode: 'Modo selección',
684
- recommended_off: 'DESACTIVADO (Recomendado)'
821
+ recommended_off: 'DESACTIVADO (Recomendado)',
822
+ recommended_on: 'Activado (recomendado)'
685
823
  }
686
824
  }
687
825
  };