Files
core/homeassistant/components/rachio/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

87 lines
2.9 KiB
JSON

{
"config": {
"step": {
"user": {
"title": "Connect to your Rachio device",
"description": "You will need the API Key from https://app.rach.io/. Go to Settings, then click 'GET API KEY'.",
"data": {
"api_key": "[%key:common::config_flow::data::api_key%]"
}
}
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"invalid_auth": "[%key:common::config_flow::error::invalid_auth%]",
"unknown": "[%key:common::config_flow::error::unknown%]"
},
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]"
}
},
"options": {
"step": {
"init": {
"data": {
"manual_run_mins": "Duration in minutes to run when activating a zone switch"
}
}
}
},
"services": {
"set_zone_moisture_percent": {
"name": "Set zone moisture percent",
"description": "Sets the moisture percentage of a zone or list of zones.",
"fields": {
"percent": {
"name": "Percent",
"description": "Set the desired zone moisture percentage."
}
}
},
"start_multiple_zone_schedule": {
"name": "Start multiple zones",
"description": "Creates a custom schedule of zones and runtimes. Note that all zones should be on the same controller to avoid issues.",
"fields": {
"duration": {
"name": "Duration",
"description": "Number of minutes to run the zone(s). If only 1 duration is given, that time will be used for all zones. If given a list of durations, the durations will apply to the respective zones listed above."
}
}
},
"pause_watering": {
"name": "Pause watering",
"description": "Pause any currently running zones or schedules.",
"fields": {
"devices": {
"name": "Devices",
"description": "Name of controllers to pause. Defaults to all controllers on the account if not provided."
},
"duration": {
"name": "Duration",
"description": "The time to pause running schedules."
}
}
},
"resume_watering": {
"name": "Resume watering",
"description": "Resume any paused zone runs or schedules.",
"fields": {
"devices": {
"name": "[%key:component::rachio::services::pause_watering::fields::devices::name%]",
"description": "Name of controllers to resume. Defaults to all controllers on the account if not provided."
}
}
},
"stop_watering": {
"name": "Stop watering",
"description": "Stop any currently running zones or schedules.",
"fields": {
"devices": {
"name": "[%key:component::rachio::services::pause_watering::fields::devices::name%]",
"description": "Name of controllers to stop. Defaults to all controllers on the account if not provided."
}
}
}
}
}