Thanks for the link.
As you think, I have this output :
>>> currentDate = new Date("25 août 2008")
Object
>>> currentDate.toLocaleString()
"NaN"
>>> currentDate = new Date("25 august 2008")
Object
>>> currentDate.toLocaleString()
"lundi 25 août 2008 00:00:00"
I have the same result with other months.
Regards,
Antoine
