1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-22 19:07:08 +00:00
Files
core/homeassistant/components/netgear_lte/strings.json

134 lines
3.3 KiB
JSON

{
"config": {
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]",
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]"
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"unknown": "[%key:common::config_flow::error::unknown%]"
},
"step": {
"user": {
"data": {
"host": "[%key:common::config_flow::data::host%]",
"password": "[%key:common::config_flow::data::password%]"
}
}
}
},
"entity": {
"binary_sensor": {
"mobile_connected": {
"name": "Mobile connected"
},
"roaming": {
"name": "Roaming"
},
"wire_connected": {
"name": "Wire connected"
}
},
"sensor": {
"band": {
"name": "Current band"
},
"cell_id": {
"name": "Cell ID"
},
"connection_text": {
"name": "Connection text"
},
"connection_type": {
"name": "Connection type"
},
"radio_quality": {
"name": "Radio quality"
},
"register_network_display": {
"name": "Register network display"
},
"rx_level": {
"name": "Rx level"
},
"service_type": {
"name": "Service type"
},
"sms": {
"name": "SMS"
},
"sms_total": {
"name": "SMS total"
},
"tx_level": {
"name": "Tx level"
},
"upstream": {
"name": "Upstream"
},
"usage": {
"name": "Usage"
}
}
},
"exceptions": {
"config_entry_not_found": {
"message": "Failed to perform action \"{service}\". Config entry for target not found"
}
},
"services": {
"connect_lte": {
"description": "Asks the modem to establish the LTE connection.",
"fields": {
"host": {
"description": "The modem that should connect.",
"name": "[%key:common::config_flow::data::host%]"
}
},
"name": "Connect LTE"
},
"delete_sms": {
"description": "Deletes messages from the modem inbox.",
"fields": {
"host": {
"description": "The modem that should have a message deleted.",
"name": "[%key:common::config_flow::data::host%]"
},
"sms_id": {
"description": "Integer or list of integers with inbox IDs of messages to delete.",
"name": "SMS ID"
}
},
"name": "Delete SMS"
},
"disconnect_lte": {
"description": "Asks the modem to close the LTE connection.",
"fields": {
"host": {
"description": "The modem that should disconnect.",
"name": "[%key:common::config_flow::data::host%]"
}
},
"name": "Disconnect LTE"
},
"set_option": {
"description": "Sets options on the modem.",
"fields": {
"autoconnect": {
"description": "Auto-connect mode.",
"name": "Auto-connect"
},
"failover": {
"description": "Failover mode.",
"name": "Failover"
},
"host": {
"description": "The modem to set options on.",
"name": "[%key:common::config_flow::data::host%]"
}
},
"name": "Set option"
}
}
}