# HG changeset patch # User Matti Hamalainen # Date 1169837343 0 # Node ID e2f2a9ce0e100d4a736f542ba168faf4036499d4 # Parent 1775b3f16cd9f8de210a535eb4b8c404f918930d Initialize gettext correctly(?). I am not entirely sure whether it is correct to call bindtextdomain() here, but it seems to work. diff -r 1775b3f16cd9 -r e2f2a9ce0e10 src/xs_init.c --- a/src/xs_init.c Fri Jan 26 18:04:03 2007 +0000 +++ b/src/xs_init.c Fri Jan 26 18:49:03 2007 +0000 @@ -58,5 +58,6 @@ */ InputPlugin *get_iplugin_info(void) { + bindtextdomain(PACKAGE, LOCALEDIR); return &xs_plugin_ip; }