Hello Everybody,
I am trying make Voice Assit to tell me the weather condition from Accuweather Integration.
Everything works fine except for the fact that the condition is in inglish but I would like to have it in Italian.
Please find below the Automation that I created:
alias: Weather
description: ""
trigger:
- platform: conversation
command:
- Condizioni meteo
condition: []
action:
- service: weather.get_forecast
target:
entity_id:
- weather.casa_2
data:
type: daily
response_variable: w
- set_conversation_response: >-
{% set next = w.forecast[0] %}
Ecco le previsioni per {{ 'domani' if day else 'oggi'}}:
La temperatura Ăš di
{{ next.temperature}} gradi e il tempo Ăš {{ next.condition }},
con {{ next.precipitation_probability }} percento di possibilitĂ di
precipitazioni.
mode: single