I try to translate dates in French. I succeeded to have the right format, but the month is in English.
I have this in config/packages/translation.yaml :
framework:
default_locale: fr
translator:
default_path: '%kernel.project_dir%/translations'
fallbacks:
- fr
And I created forms.fr.yaml in translations fold :
Jan: Janvier
Feb: Février
Mar: Mars
Apr: Avril
May: Mai
Jun: Juin
Jul: Juillet
Aug: Août
Sep: Septembre
Oct: Octobre
Nov: Novembre
Dec: Décembre
At the moment, it doesn't work. What did I miss ?
Thank you for your help.