core/homeassistant/components/modbus/strings.json

83 lines
3.1 KiB
JSON
Raw Normal View History

{
"services": {
"reload": {
"name": "[%key:common::action::reload%]",
"description": "Reloads all modbus entities."
},
"write_coil": {
"name": "Write coil",
"description": "Writes to a modbus coil.",
"fields": {
"address": {
"name": "Address",
"description": "Address of the register to write to."
},
"state": {
"name": "State",
"description": "State to write."
},
"slave": {
"name": "Slave",
"description": "Address of the modbus unit/slave."
},
"hub": {
"name": "Hub",
"description": "Modbus hub name."
}
}
},
"write_register": {
"name": "Write register",
"description": "Writes to a modbus holding register.",
"fields": {
"address": {
"name": "[%key:component::modbus::services::write_coil::fields::address::name%]",
"description": "Address of the holding register to write to."
},
"slave": {
"name": "[%key:component::modbus::services::write_coil::fields::slave::name%]",
"description": "[%key:component::modbus::services::write_coil::fields::slave::description%]"
},
"value": {
"name": "Value",
"description": "Value (single value or array) to write."
},
"hub": {
"name": "[%key:component::modbus::services::write_coil::fields::hub::name%]",
"description": "[%key:component::modbus::services::write_coil::fields::hub::description%]"
}
}
},
"stop": {
"name": "[%key:common::action::stop%]",
"description": "Stops modbus hub.",
"fields": {
"hub": {
"name": "[%key:component::modbus::services::write_coil::fields::hub::name%]",
"description": "[%key:component::modbus::services::write_coil::fields::hub::description%]"
}
}
},
"restart": {
"name": "[%key:common::action::restart%]",
"description": "Restarts modbus hub (if running stop then start).",
"fields": {
"hub": {
"name": "[%key:component::modbus::services::write_coil::fields::hub::name%]",
"description": "[%key:component::modbus::services::write_coil::fields::hub::description%]"
}
}
}
2023-09-09 16:34:01 +00:00
},
"issues": {
"deprecated_close_comm_config": {
"title": "`{config_key}` configuration key is being removed",
"description": "Please remove the `{config_key}` key from the {integration} entry in your configuration.yaml file and restart Home Assistant to fix this issue.\n\nCommunication is automatically closed on errors, see [the documentation]({url}) for other error handling parameters."
},
"deprecated_retry_on_empty": {
"title": "`{config_key}` configuration key is being removed",
"description": "Please remove the `{config_key}` key from the {integration} entry in your configuration.yaml file and restart Home Assistant to fix this issue.\n\nRetry on empty is automatically applied, see [the documentation]({url}) for other error handling parameters."
2023-09-09 16:34:01 +00:00
}
}
}