1
mirror of https://github.com/home-assistant/core synced 2024-08-28 03:36:46 +02:00
ha-core/homeassistant/components/siren/strings.json
Joost Lekkerkerker b367c95c81
Add more common translations (#96429)
* Add common translations

* Add common translations

* Add common translations

* Add common translations

* Add common translations

* Add common translations

* Add common translations

* Add common translations
2023-07-12 22:00:05 -04:00

46 lines
1.3 KiB
JSON

{
"title": "Siren",
"entity_component": {
"_": {
"name": "[%key:component::siren::title%]",
"state": {
"off": "[%key:common::state::off%]",
"on": "[%key:common::state::on%]"
},
"state_attributes": {
"available_tones": {
"name": "Available tones"
}
}
}
},
"services": {
"turn_on": {
"name": "[%key:common::action::turn_on%]",
"description": "Turns the siren on.",
"fields": {
"tone": {
"name": "Tone",
"description": "The tone to emit. When `available_tones` property is a map, either the key or the value can be used. Must be supported by the integration."
},
"volume_level": {
"name": "Volume",
"description": "The volume. 0 is inaudible, 1 is the maximum volume. Must be supported by the integration."
},
"duration": {
"name": "Duration",
"description": "Number of seconds the sound is played. Must be supported by the integration."
}
}
},
"turn_off": {
"name": "[%key:common::action::turn_off%]",
"description": "Turns the siren off."
},
"toggle": {
"name": "[%key:common::action::toggle%]",
"description": "Toggles the siren on/off."
}
}
}