QUOTE (emanuel @ Apr 25 2007, 09:00 PM)

@osccoder
I take your suggestion and edit the engish file.
That works for me. But the bug exist in German
language that month are english not german.
What i can not figure out if there is a language file
for month in every language osc supports and where it is?
Best Regards
Emanuel
I had the same problem with spanish language and I solved it changing from @setlocale(LC_TIME, 'sp'); to @setlocale(LC_TIME, 'es_ES.ISO_8859-1'); in includes/languages/espanol.php. As for German, I think you should set it as follow :
// on RedHat try 'de_DE'
// on FreeBSD try 'de_DE.ISO_8859-1'
// on Windows try 'de' or 'German'
@setlocale(LC_TIME, 'de_DE.ISO_8859-1'); //would be the configuration for German in a FreeBSD server.
Unfortunately, I didn't solved the proble for euskera (basque language) and if somebody know how to set it, it would be great

Thanks
Sébastien