Ludeeus
  • Hello world?
  • Messages
    • Teapot
  • Home Assistant
    • Blueprints
      • Pause Playing Media During Calls
    • Discord webhook notifier
    • Templates
      • Get the user that changed an entity
      • Get All entities from a group
      • List all active domains
      • Translate strftime weekday
      • Share state between two entities
      • Strings
  • Playground
    • 99 Bottles of Beer 🍻
  • 🤬Outlet
    • I have an error
    • My custom cards don't work
Powered by GitBook
On this page
  1. Home Assistant
  2. Templates

Translate strftime weekday

{% set days = {
  "Mon": "Man",
  "Tue": "Tir",
  "Wed": "Ons",
  "Thu": "Tor",
  "Fri": "Fre",
  "Sat": "Lør",
  "Sun": "Søn",
} %}
{{ days[now().strftime('%a')]}}
PreviousList all active domainsNextShare state between two entities

Last updated 5 years ago