Thanks, but that only fixes it for Italian, and I'd like to use other languages too, not necessarily limited to:
Code:
<?php
setlocale(LC_ALL, 'it_IT');
echo strftime("%A, %e %B %Y<br/>");
setlocale(LC_ALL, 'de_DE');
echo strftime("%A, %e %B %Y<br/>");
setlocale(LC_ALL, 'fr_FR');
echo strftime("%A, %e %B %Y<br/>");
setlocale(LC_ALL, 'es_ES');
echo strftime("%A, %e %B %Y<br/>");
?>
and all I get is:
Code:
marted�, 24 novembre 2020
marted�, 24 novembre 2020
marted�, 24 novembre 2020
marted�, 24 novembre 2020
(nevermind about the encoding)
Can we get a more complete set of locales (those reported by resourcebundle_locales, maybe)? Is that a per-account setting? How can I change it?