Gizmo
Hi @mad !
I think I found a bug?..
When using locale settings and strftime date format I get crap instead of localized date.
If I set ru_RU locale and A as a Format Date Post then I get something like "68400000" as a post date.
But if I use this code then I see correct date display.
<?php
setlocale(LC_TIME, "C");
echo strftime("%A");
setlocale(LC_TIME, "ru_RU");
echo strftime(" in russian - %A,");
?>
Any ideas?