hass-core/homeassistant/components/nibe_heatpump/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

49 lines
2.6 KiB
JSON

{
"config": {
"step": {
"user": {
"menu_options": {
"nibegw": "NibeGW",
"modbus": "Modbus"
},
"description": "Pick the connection method to your pump. In general, F-series pumps require a NibeGW custom accessory, while an S-series pump has Modbus support built-in."
},
"modbus": {
"data": {
"model": "Model of Heat Pump",
"modbus_url": "Modbus URL",
"modbus_unit": "Modbus Unit Identifier"
},
"data_description": {
"modbus_url": "Modbus URL that describes the connection to your Heat Pump or MODBUS40 unit. It should be on the form:\n - `tcp://[HOST]:[PORT]` for Modbus TCP connection\n - `serial://[LOCAL DEVICE]` for a local Modbus RTU connection\n - `rfc2217://[HOST]:[PORT]` for a remote telnet based Modbus RTU connection.",
"modbus_unit": "Unit identification for your Heat Pump. Can usually be left at 0."
}
},
"nibegw": {
"description": "Before attempting to configure the integration, verify that:\n - The NibeGW unit is connected to a heat pump.\n - The MODBUS40 accessory has been enabled in the heat pump configuration.\n - The pump has not gone into an alarm state about missing MODBUS40 accessory.",
"data": {
"model": "[%key:component::nibe_heatpump::config::step::modbus::data::model%]",
"ip_address": "Remote address",
"remote_read_port": "Remote read port",
"remote_write_port": "Remote write port",
"listening_port": "Local listening port"
},
"data_description": {
"ip_address": "The address of the NibeGW unit. The device should have been configured with a static address.",
"remote_read_port": "The port the NibeGW unit is listening for read requests on.",
"remote_write_port": "The port the NibeGW unit is listening for write requests on.",
"listening_port": "The local port on this system, that the NibeGW unit is configured to send data to."
}
}
},
"error": {
"write": "Error on write request to pump. Verify your `Remote write port` or `Remote address`.",
"read": "Error on read request from pump. Verify your `Remote read port` or `Remote address`.",
"address": "Invalid remote address specified. Address must be an IP address or a resolvable hostname.",
"address_in_use": "The selected listening port is already in use on this system.",
"model": "The selected model doesn't seem to support MODBUS40",
"unknown": "[%key:common::config_flow::error::unknown%]",
"url": "The specified URL is not well formed nor supported"
}
}
}