Files
core/homeassistant/components/harmony/strings.json
ehendrix23 2fd6431cff Allow harmony activity change on start of switching activity (#36699)
* Allow activity change on start of switch

Allow activity to be updated when a switch to a new activity is initiated instead of when it is completed.

* Updates based on feedback

Some items are not required to be done as YAML is not used anymore.
Cleaned-up some code.

* Fix for change on how to set callbacks

How callbacks are set now one has to set the new_activity and new_activity_starting as well, even just with None.

* Added callback update

Added so that when it is changed in the UI the callbacks will be changed as well.

* Added test cases for notify setting

Added test cases for config flow to test new setting for activity notifications.
2020-06-19 21:50:42 -05:00

37 lines
989 B
JSON

{
"config": {
"flow_title": "Logitech Harmony Hub {name}",
"step": {
"user": {
"title": "Setup Logitech Harmony Hub",
"data": {
"host": "[%key:common::config_flow::data::host%]",
"name": "Hub Name"
}
},
"link": {
"title": "Setup Logitech Harmony Hub",
"description": "Do you want to setup {name} ({host})?"
}
},
"error": {
"cannot_connect": "Failed to connect, please try again",
"unknown": "Unexpected error"
},
"abort": {
"already_configured": "Device is already configured"
}
},
"options": {
"step": {
"init": {
"description": "Adjust Harmony Hub Options",
"data": {
"activity": "The default activity to execute when none is specified.",
"delay_secs": "The delay between sending commands.",
"activity_notify": "Update current activity on start of activity switch."
}
}
}
}
}