1
mirror of https://github.com/home-assistant/core synced 2024-08-28 03:36:46 +02:00
ha-core/homeassistant/components/counter/strings.json
G Johansson 72c02d4d63
Remove counter configure service (#103204)
* Remove counter configure service after deprecation

* reproduce state
2023-11-04 16:17:51 +01:00

54 lines
1.1 KiB
JSON

{
"title": "Counter",
"entity_component": {
"_": {
"name": "[%key:component::counter::title%]",
"state_attributes": {
"editable": {
"name": "[%key:common::generic::ui_managed%]",
"state": {
"true": "[%key:common::state::yes%]",
"false": "[%key:common::state::no%]"
}
},
"initial": {
"name": "Initial value"
},
"maximum": {
"name": "Maximum"
},
"minimum": {
"name": "Minimum"
},
"step": {
"name": "Step"
}
}
}
},
"services": {
"decrement": {
"name": "Decrement",
"description": "Decrements a counter."
},
"increment": {
"name": "Increment",
"description": "Increments a counter."
},
"reset": {
"name": "Reset",
"description": "Resets a counter."
},
"set_value": {
"name": "Set",
"description": "Sets the counter value.",
"fields": {
"value": {
"name": "Value",
"description": "The new counter value the entity should be set to."
}
}
}
}
}