00001 00004 #ifndef __CHARSET_H__ 00005 #define __CHARSET_H__ 00006 00007 #include <gtk/gtk.h> 00008 #include <locale.h> 00009 #include <libintl.h> 00010 00011 #define _(String) g_locale_to_utf8(gettext(String), -1, NULL, NULL, NULL) 00012 #define N_(String) g_locale_to_utf8(gettext(String), -1, NULL, NULL, NULL) 00013 #define __(String) (String) 00014 00015 00016 #endif