|
GTK+2 and Unicode
I seem to have Unicode working fine in both the console and in X with GTK+2 apps. However, whenever I start up a GTK program from a terminal, it outputs the lines:
Gdk-WARNING **: locale not supported by Xlib
Gdk-WARNING **: can not set locale modifiers
This is what locale prints out:
LANG=en_IN.utf8
LC_CTYPE="en_IN.utf8"
LC_NUMERIC="en_IN.utf8"
LC_TIME="en_IN.utf8"
LC_COLLATE="en_IN.utf8"
LC_MONETARY="en_IN.utf8"
LC_MESSAGES="en_IN.utf8"
LC_PAPER="en_IN.utf8"
LC_NAME="en_IN.utf8"
LC_ADDRESS="en_IN.utf8"
LC_TELEPHONE="en_IN.utf8"
LC_MEASUREMENT="en_IN.utf8"
LC_IDENTIFICATION="en_IN.utf8"
LC_ALL=
Is there anything else I need to change?
|