Hi, I'm packaging an utility in python that uses gettext locales and python doesn't seem to like those three languages, catalan (ca_ES), galego (gl_ES) and euskera/basque (eu_ES).
I had to add a couple of lines to the definition of
locale_alias in /usr/lib/python2.3/locale.py:
'ca':
'ca_ES.ISO8859-1',
'ca_es':
'ca_ES.ISO8859-1',
'eu':
'eu_ES.ISO8859-1',
'eu_es':
'eu_ES.ISO8859-1',
'gl':
'gl_ES.ISO8859-1',
'gl_es':
'gl_ES.ISO8859-1',
I've made a quick patch that solves that problem, i'm
attaching it to this mail.
Greetings,
Miry
______________________________________________
Renovamos el Correo Yahoo!: �250 MB GRATIS!
Nuevos servicios, m�s seguridad
http://correo.yahoo.es
locale.diff
Description: locale.diff

