Hi,
how can I display the field value of a date field to the corresponding language setup in kirby?
This is my setup (single language site):
// config.php
'locale' => [
LC_ALL => 'de_DE.utf-8',
LC_COLLATE => 'de_DE.utf-8',
LC_MONETARY => 'de_DE.utf-8',
LC_NUMERIC => 'en_DE.utf-8',
LC_TIME => 'de_DE.utf-8',
LC_MESSAGES => 'de_DE.utf-8',
LC_CTYPE => 'de_DE.utf-8'
],
# Blueprint
my_date:
type: date
display: DD. MMMM YYYY
The calendar dropdown is shown in German, but the input shows 01. January 2021
.
Edit: kirby v.3.5.2-rc.1