From: Isabelle V. <ver...@fr...> - 2011-04-14 06:58:40
|
Hello Esteban, With French files, the accented letters are correctly displayed on the browser. The problem is probably how is encoded your "es-ES".ini file: it should be saved as "UTF-8 - No BOM". You can control this using "Notepad++", a free source code editor : http://notepad-plus-plus.org/. About management of dates not linked to the language files: To have dates in your language, you must modify "setlocale" in the file : include/tsx/timezone.inc For my tests, I have this: setlocale(LC_ALL,'fr_FR','fra'); But, I recently noticed a problem for French months with accented letters whereas the meta tag for charset is utf-8. It's amazing! One way to solve this problem is to apply "utf8_encode" to dates. Isabelle. |