Date with localized month name with fluid’s format.date

Trying

<f:format.date format="d. F Y" date="now"/>

always resulted in an english month name, no matter what. The reason is, this way datetime is used. When using the format with % though, strftime is used, which works:

<f:format.date format="%d. %B %Y" date="now"/>

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.