bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: bug in libintl2 0.12.1-3


From: Bruno Haible
Subject: Re: bug in libintl2 0.12.1-3
Date: Tue, 23 Sep 2003 17:03:28 +0200
User-agent: KMail/1.5

Uwe Stöhr wrote:
> I just updated libintl2 to 0.12.1-3 and now german umlauts in the menus
> and windows are no longer displayed correct. For example "geändert" it is
> displayed "ge"andert".
> I'm using libintl2 under the latest cygwin and the latest gettext.

This symptom occurs when the LC_CTYPE facet of the locale is not set.
If your program does only
   setlocale (LC_MESSAGES, "");
then it's time to add a call
   setlocale (LC_CTYPE, "");
or do both of these in a single call:
   setlocale (LC_ALL, "");

Bruno





reply via email to

[Prev in Thread] Current Thread [Next in Thread]