1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-02 00:20:30 +01:00

Improve select action naming consistency (#166398)

This commit is contained in:
Franck Nijhof
2026-03-25 06:55:13 +01:00
committed by GitHub
parent 1a772b6df2
commit 8b696044c3

View File

@@ -38,42 +38,42 @@
},
"services": {
"select_first": {
"description": "Selects the first option.",
"name": "First"
"description": "Selects the first option of a select.",
"name": "Select first option"
},
"select_last": {
"description": "Selects the last option.",
"name": "Last"
"description": "Selects the last option of a select.",
"name": "Select last option"
},
"select_next": {
"description": "Selects the next option.",
"description": "Selects the next option of a select.",
"fields": {
"cycle": {
"description": "If the option should cycle from the last to the first.",
"name": "Cycle"
}
},
"name": "Next"
"name": "Select next option"
},
"select_option": {
"description": "Selects an option.",
"description": "Selects an option of a select.",
"fields": {
"option": {
"description": "Option to be selected.",
"name": "Option"
}
},
"name": "Select"
"name": "Select option"
},
"select_previous": {
"description": "Selects the previous option.",
"description": "Selects the previous option of a select.",
"fields": {
"cycle": {
"description": "If the option should cycle from the first to the last.",
"name": "Cycle"
}
},
"name": "Previous"
"name": "Select previous option"
}
},
"title": "Select",