I would like to send a notification (and Google Home TTS) with translated days and months from the meteoalarm sensor “onset” and “expires” attributes. Right now, I’m sending a notification with timestamp_custom (e.g. Thu 13 or Jun 13) but it’s in English and I would like to have it translated into Slovak. This is how it looks like in attributes right now 2019-06-13T13:00:00+00:00
use a filter for this.
For example, {{state_attr("entity_domain.entity_name","last_updated") | timestamp_custom("%H:%M")}}
This page will give you the options for different display: http://bit.ly/timstamp
Thank you, that works! And how could I make it with weekdays? I’ve tried changing month to day and %m to %a but it shows only the last variable, in this case Sunday.