1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-27 13:25:35 +00:00
Files
core/homeassistant/components/cambridge_audio/strings.json
ichbinsteffen 3e0e807c96 Add control bus mode selector to Cambridge Audio (#139131)
* [CambridgeAudio Integration] Add switch to enable Control Bus Mode

* remove load_fn

* Add import for ControlBusMode

* Add strings for control_bus_mode

* Add icons for control_bus_mode

* Add test case for the select ControlBusMode.Amplifier

* Change the set of icons

* Fix the usage of the wrong property name

* Fix test

* Fix test 2

* add new snapshot

* fix test name

* Fix

---------

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2025-05-09 15:53:37 +02:00

86 lines
2.6 KiB
JSON

{
"config": {
"flow_title": "{name}",
"step": {
"user": {
"description": "Set up your Cambridge Audio Streamer to integrate with Home Assistant.",
"data": {
"host": "[%key:common::config_flow::data::host%]"
},
"data_description": {
"host": "The hostname or IP address of the Cambridge Audio Streamer."
}
},
"discovery_confirm": {
"description": "Do you want to set up {name}?"
},
"reconfigure": {
"description": "Reconfigure your Cambridge Audio Streamer.",
"data": {
"host": "[%key:common::config_flow::data::host%]"
},
"data_description": {
"host": "[%key:component::cambridge_audio::config::step::user::data_description::host%]"
}
}
},
"error": {
"cannot_connect": "Failed to connect to Cambridge Audio device. Please make sure the device is powered up and connected to the network. Try power-cycling the device if it does not connect."
},
"abort": {
"wrong_device": "This Cambridge Audio device does not match the existing device ID. Please make sure you entered the correct IP address.",
"reconfigure_successful": "[%key:common::config_flow::abort::reconfigure_successful%]",
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]"
}
},
"entity": {
"select": {
"display_brightness": {
"name": "Display brightness",
"state": {
"bright": "Bright",
"dim": "Dim",
"off": "[%key:common::state::off%]"
}
},
"audio_output": {
"name": "Audio output"
},
"control_bus_mode": {
"name": "Control Bus mode",
"state": {
"amplifier": "Amplifier",
"receiver": "Receiver",
"off": "[%key:common::state::off%]"
}
}
},
"switch": {
"pre_amp": {
"name": "Pre-Amp"
},
"early_update": {
"name": "Early update"
}
}
},
"exceptions": {
"unsupported_media_type": {
"message": "Unsupported media type for Cambridge Audio device: {media_type}"
},
"missing_preset": {
"message": "Missing preset for media_id: {preset_id}"
},
"preset_non_integer": {
"message": "Preset must be an integer, got: {preset_id}"
},
"entry_cannot_connect": {
"message": "Error while connecting to {host}"
},
"command_error": {
"message": "Error executing {function_name} on entity {entity_id}"
}
}
}