I try to make my invoice template no speaking ghetto
so I would like something like due Monday April, 16 2000
and in French preferably which I believe in PHP is represented by L dd F Y
https://www.php.net/manual/en/datetime.format.php
my setup
- Language: Français - Canada
- Format Date: Mon Jan 31, 2000
my template
Voici la facture de [numéro] au montant de $amount, payable le $due_date.
the result
…due the 02/Aug/2021.
expected
at least Lun Jan, 31 2000
which in english would be: Mon Jan, 31 2000
but notice, in French Canadian the long format date is DD, MM YYYY and not MM, DD, YYYY
What I tried
In the template I tried different variatio of
- {$date:dd\ mm\ yyyy}
- {$date: L dd F Y}
- {$date::L dd F Y}
- {$date::L dd F Y}
…