Comment 2 for bug 266008

Revision history for this message
Hertell (hertell) wrote :

I tracked down the encoding-problem to the following row in
Defaults.py:
add_language('en', _('English (USA)'), 'us-ascii')

By changing the encoding to iso-8859-1 fixes the problem.
add_language('en', _('English (USA)'), 'iso-8859-1')

You probably ask why I don't use the admin-pages in my local
language? The ansver is that I prefer English before
anything else.