hass-core/homeassistant/components/motionblinds_ble/strings.json
Lenn 93e87997be
Add sensors to Motionblinds BLE integration (#114226)
* Add sensors

* Add sensor.py to .coveragerc

* Move icons to icons.json

* Remove signal strength translation key

* Change native_value attribute name in entity description to initial_value

* Use str instead of enum for MotionConnectionType for options

* Add calibration options to entity description

* Fix icons

* Change translations of connection and calibration

* Move entity descriptions to __init__

* Use generic sensor class

* Use generic sensor class

* Update homeassistant/components/motionblinds_ble/strings.json

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

* Update homeassistant/components/motionblinds_ble/sensor.py

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

* Update homeassistant/components/motionblinds_ble/strings.json

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

* Update homeassistant/components/motionblinds_ble/strings.json

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>

---------

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2024-06-22 13:25:03 +02:00

91 lines
2.6 KiB
JSON

{
"config": {
"abort": {
"no_bluetooth_adapter": "No bluetooth adapter found",
"no_devices_found": "Could not find any bluetooth devices"
},
"error": {
"could_not_find_motor": "Could not find a motor with that MAC code",
"invalid_mac_code": "Invalid MAC code"
},
"step": {
"user": {
"description": "Fill in the 4-character MAC code of your motor, for example F3ED or E3A6",
"data": {
"mac_code": "MAC code"
}
},
"confirm": {
"description": "What kind of blind is {display_name}?"
}
}
},
"options": {
"step": {
"init": {
"title": "Connection options",
"description": "The default disconnect time is 15 seconds, adjustable using the slider below. You may want to adjust this if you have larger blinds or other specific needs. You can also enable a permanent connection to the motor, which disables the disconnect time and automatically reconnects when the motor is disconnected for any reason.\n**WARNING**: Changing any of the below options may significantly reduce battery life of your motor!",
"data": {
"permanent_connection": "Permanent connection",
"disconnect_time": "Disconnect time (seconds)"
}
}
}
},
"selector": {
"blind_type": {
"options": {
"roller": "Roller blind",
"honeycomb": "Honeycomb blind",
"roman": "Roman blind",
"venetian": "Venetian blind",
"venetian_tilt_only": "Venetian blind (tilt-only)",
"double_roller": "Double roller blind",
"curtain": "Curtain blind",
"vertical": "Vertical blind"
}
}
},
"entity": {
"button": {
"connect": {
"name": "[%key:common::action::connect%]"
},
"disconnect": {
"name": "[%key:common::action::disconnect%]"
},
"favorite": {
"name": "Favorite"
}
},
"select": {
"speed": {
"name": "Speed",
"state": {
"1": "Low",
"2": "Medium",
"3": "High"
}
}
},
"sensor": {
"connection": {
"name": "Connection status",
"state": {
"connected": "Connected",
"disconnected": "Disconnected",
"connecting": "Connecting",
"disconnecting": "Disconnecting"
}
},
"calibration": {
"name": "Calibration status",
"state": {
"calibrated": "Calibrated",
"uncalibrated": "Uncalibrated",
"calibrating": "Calibration in progress"
}
}
}
}
}