1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-26 14:08:21 +00:00
Files
core/homeassistant/components/timer/strings.json
2025-10-28 10:33:10 +01:00

73 lines
2.0 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": {
"false": "[%key:common::state::no%]",
"true": "[%key:common::state::yes%]"
}
},
"finishes_at": {
"name": "Finishes at"
},
"remaining": {
"name": "Remaining"
},
"restore": {
"name": "Restore"
}
}
}
},
"services": {
"cancel": {
"description": "Resets a timer's duration to the last known initial value without firing the timer finished event.",
"name": "Cancel"
},
"change": {
"description": "Changes a timer by adding or subtracting a given duration.",
"fields": {
"duration": {
"description": "Duration to add to or subtract from the running timer.",
"name": "Duration"
}
},
"name": "Change"
},
"finish": {
"description": "Finishes a running timer earlier than scheduled.",
"name": "Finish"
},
"pause": {
"description": "Pauses a running timer, retaining the remaining duration for later continuation.",
"name": "[%key:common::action::pause%]"
},
"reload": {
"description": "Reloads timers from the YAML-configuration.",
"name": "[%key:common::action::reload%]"
},
"start": {
"description": "Starts a timer or restarts it with a provided duration.",
"fields": {
"duration": {
"description": "Custom duration to restart the timer with.",
"name": "Duration"
}
},
"name": "[%key:common::action::start%]"
}
},
"title": "Timer"
}