Hey there!
My problem is: I want to have the correct german localized for dates like the following:
{{ blog_post.date|date("l, d. F Y") }}
Like in the docs ( http://learn.getgrav.org/content/multi-language#set-locale-to-the-active-language ) I thought, i could simply set
languages:
override_locale: true
and add "de" to the supported languages. But this didn't work. I also don't want any other language! The entire site is on german. So i don't need multi-language support.
Do I really manually translate the months, weekdays, etc. like in the Tutorial ( http://learn.getgrav.org/cookbook/twig-recipes#displaying-a-translated-month ) when PHP support already those translations?
Because it would be very ugly slicing that date filter into multiple filters & translate them all separately.