1
0
mirror of https://github.com/home-assistant/core.git synced 2026-03-02 15:52:29 +00:00
Files
core/homeassistant/components/timer/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

68 lines
1.5 KiB
JSON

{
"entity_component": {
"_": {
"name": "Timer",
"state": {
"active": "[%key:common::state::active%]",
"idle": "[%key:common::state::idle%]",
"paused": "[%key:common::state::paused%]"
},
"state_attributes": {
"duration": {
"name": "Duration"
},
"editable": {
"name": "[%key:common::generic::ui_managed%]",
"state": {
"true": "[%key:common::state::yes%]",
"false": "[%key:common::state::no%]"
}
},
"finishes_at": {
"name": "Finishes at"
},
"remaining": {
"name": "Remaining"
},
"restore": {
"name": "Restore"
}
}
}
},
"services": {
"start": {
"name": "[%key:common::action::stop%]",
"description": "Starts a timer.",
"fields": {
"duration": {
"name": "Duration",
"description": "Duration the timer requires to finish. [optional]."
}
}
},
"pause": {
"name": "[%key:common::action::pause%]",
"description": "Pauses a timer."
},
"cancel": {
"name": "Cancel",
"description": "Cancels a timer."
},
"finish": {
"name": "Finish",
"description": "Finishes a timer."
},
"change": {
"name": "Change",
"description": "Changes a timer.",
"fields": {
"duration": {
"name": "Duration",
"description": "Duration to add or subtract to the running timer."
}
}
}
}
}