mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Extend attribute state translations for Camera (#89876)
* Extend attribute state translations for Camera * Add common generic translations
This commit is contained in:
parent
0bf652ca96
commit
b9ff69d3ac
@ -7,6 +7,31 @@
|
|||||||
"recording": "Recording",
|
"recording": "Recording",
|
||||||
"streaming": "Streaming",
|
"streaming": "Streaming",
|
||||||
"idle": "[%key:common::state::idle%]"
|
"idle": "[%key:common::state::idle%]"
|
||||||
|
},
|
||||||
|
"state_attributes": {
|
||||||
|
"access_token": {
|
||||||
|
"name": "Access token"
|
||||||
|
},
|
||||||
|
"brand": {
|
||||||
|
"name": "Brand"
|
||||||
|
},
|
||||||
|
"frontend_stream_type": {
|
||||||
|
"name": "Stream type",
|
||||||
|
"state": {
|
||||||
|
"hls": "HLS",
|
||||||
|
"webrtc": "WebRTC"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"motion_detection": {
|
||||||
|
"name": "Motion detection",
|
||||||
|
"state": {
|
||||||
|
"true": "Enabled",
|
||||||
|
"false": "Disabled"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"model_name": {
|
||||||
|
"name": "[%key:common::generic::model%]"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
{
|
{
|
||||||
"common": {
|
"common": {
|
||||||
|
"generic": {
|
||||||
|
"model": "Model"
|
||||||
|
},
|
||||||
"state": {
|
"state": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user