hass-core/homeassistant/components/geniushub/strings.json
Paulus Schoutsen 7859be6481
Add deduplicate translations script (#96384)
* Add deduplicate script

* Fix forecast_solar incorrect key with space

* Fix utf-8

* Do not create references to other arbitrary other integrations

* Add commented code to only allow applying to referencing integrations

* Tweak

* Bug fix

* Add command line arg for limit reference

* never suggest to update common keys

* Output of script

* Apply suggestions from code review

Co-authored-by: Michael <35783820+mib1185@users.noreply.github.com>

---------

Co-authored-by: Michael <35783820+mib1185@users.noreply.github.com>
2023-07-13 11:52:50 -04:00

46 lines
1.4 KiB
JSON

{
"services": {
"set_zone_mode": {
"name": "Set zone mode",
"description": "Set the zone to an operating mode.",
"fields": {
"entity_id": {
"name": "Entity",
"description": "The zone's entity_id."
},
"mode": {
"name": "[%key:common::config_flow::data::mode%]",
"description": "One of: off, timer or footprint."
}
}
},
"set_zone_override": {
"name": "Set zone override",
"description": "Overrides the zone's set point for a given duration.",
"fields": {
"entity_id": {
"name": "Entity",
"description": "[%key:component::geniushub::services::set_zone_mode::fields::entity_id::description%]"
},
"temperature": {
"name": "Temperature",
"description": "The target temperature."
},
"duration": {
"name": "Duration",
"description": "The duration of the override. Optional, default 1 hour, maximum 24 hours."
}
}
},
"set_switch_override": {
"name": "Set switch override",
"description": "Overrides switch for a given duration.",
"fields": {
"duration": {
"name": "Duration",
"description": "[%key:component::geniushub::services::set_zone_override::fields::duration::description%]"
}
}
}
}
}