1
0
mirror of https://github.com/home-assistant/core.git synced 2026-03-02 07:29:28 +00:00
Files
core/homeassistant/components/modern_forms/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

55 lines
1.8 KiB
JSON

{
"config": {
"flow_title": "{name}",
"step": {
"user": {
"description": "Set up your Modern Forms fan to integrate with Home Assistant.",
"data": {
"host": "[%key:common::config_flow::data::host%]"
}
},
"zeroconf_confirm": {
"description": "Do you want to add the Modern Forms fan named `{name}` to Home Assistant?",
"title": "Discovered Modern Forms fan device"
}
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]"
},
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]",
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]"
}
},
"services": {
"set_light_sleep_timer": {
"name": "Set light sleep timer",
"description": "Sets a sleep timer on a Modern Forms light.",
"fields": {
"sleep_time": {
"name": "Sleep time",
"description": "Number of minutes to set the timer."
}
}
},
"clear_light_sleep_timer": {
"name": "Clear light sleep timer",
"description": "Clears the sleep timer on a Modern Forms light."
},
"set_fan_sleep_timer": {
"name": "Set fan sleep timer",
"description": "Sets a sleep timer on a Modern Forms fan.",
"fields": {
"sleep_time": {
"name": "[%key:component::modern_forms::services::set_light_sleep_timer::fields::sleep_time::name%]",
"description": "[%key:component::modern_forms::services::set_light_sleep_timer::fields::sleep_time::description%]"
}
}
},
"clear_fan_sleep_timer": {
"name": "Clear fan sleep timer",
"description": "Clears the sleep timer on a Modern Forms fan."
}
}
}