1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-08 17:49:37 +01:00
Files
core/homeassistant/components/conversation/strings.json
T
steffenrapp 45c0dc6854 Add missing conversation service translation (#100308)
* Update services.yaml

* Update strings.json

* Update services.yaml

* Update strings.json

* Update strings.json

* fix translation keys

* Fix translation keys
2023-09-18 11:44:41 +02:00

38 lines
1.2 KiB
JSON

{
"title": "Conversation",
"services": {
"process": {
"name": "Process",
"description": "Launches a conversation from a transcribed text.",
"fields": {
"text": {
"name": "Text",
"description": "Transcribed text input."
},
"language": {
"name": "Language",
"description": "Language of text. Defaults to server language."
},
"agent_id": {
"name": "Agent",
"description": "Conversation agent to process your request. The conversation agent is the brains of your assistant. It processes the incoming text commands."
}
}
},
"reload": {
"name": "[%key:common::action::reload%]",
"description": "Reloads the intent configuration.",
"fields": {
"language": {
"name": "[%key:component::conversation::services::process::fields::language::name%]",
"description": "Language to clear cached intents for. Defaults to server language."
},
"agent_id": {
"name": "[%key:component::conversation::services::process::fields::agent_id::name%]",
"description": "Conversation agent to reload."
}
}
}
}
}