On Wed, 19 Aug 2009, Ignacio Diaz-Emparanza wrote:
El 18 de agosto de 2009 21:33, Allin Cottrell
<cottrell(a)wfu.edu> escribi�:
>
> On Tue, 18 Aug 2009, Hebert Suarez Cahuana wrote:
>
> > Estimados seniores: Estoy importando datos de stata a Gretl, pero me
> > encuentro que las variables que tienen en su etiqueta la letra "enie"
no
> > puede importar la misma, pero si la variable. ?Hay alguna forma de que
> > Gretl acepte la "enie" Utilizo ubuntu y mi idioma configurado es
> espaniol.
> > Cuando en Herramientas/preferecias/general/ coloco en preferencias del
> > idioma spanish me dice lo siguiente *es_ES: este idioma local no est�
> > soportado en este sistema*
> > �Debo especificar alguna variante al momento de hacer ./configure make
> > make check y make install, para que acepte el idioma spanish?
>
> The message about the locale es_ES not being supported means that
> the function call
>
> setlocale(LC_ALL, "es_ES");
>
> did not succeed. And that means that the operating system does
> not support es_ES. It's not a matter of how gretl is configured.
> You should check the Ubuntu documentation on installing locale
> support.
Umm I am not sure. I think I have ubuntu correctly configured in spanish,
and I obtain the same message. The output of 'locale' in my system is:
ignacio@b012495:~$ locale
LANG=es_ES.UTF-8
LC_CTYPE="es_ES.UTF-8"
LC_NUMERIC="es_ES.UTF-8"
LC_TIME="es_ES.UTF-8"
LC_COLLATE="es_ES.UTF-8"
LC_MONETARY="es_ES.UTF-8"
LC_MESSAGES="es_ES.UTF-8"
LC_PAPER="es_ES.UTF-8"
LC_NAME="es_ES.UTF-8"
LC_ADDRESS="es_ES.UTF-8"
LC_TELEPHONE="es_ES.UTF-8"
LC_MEASUREMENT="es_ES.UTF-8"
LC_IDENTIFICATION="es_ES.UTF-8"
LC_ALL=
What does "locale -a | grep es_ES" show?
I suspect there is no entry for plain "es_ES". But if the Spanish
locale is es_ES.UTF-8, then es_ES should be an alias.
This can be fixed via:
sudo localedef -i es_ES -f UTF-8 es_ES
That said, in current CVS I've added a workaround for the missing
alias that might work.
Allin.