Comment fix
[mim] / src / ui / im-extra-intl.c
1 /* $Id: im-extra-intl.c,v 1.2 2003/04/23 19:48:44 nlevitt Exp $ */
2 /*
3  * Copyright (c) 2003 Noah Levitt 
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  * 
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  * 
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #ifdef HAVE_CONFIG_H
21 # include "config.h"
22 #endif
23
24 #ifdef ENABLE_NLS
25
26 #include <libintl.h>
27 #include <gtk/gtk.h>
28
29 gchar *
30 im_extra_gettext (const gchar *str)
31 {
32   static gboolean gucharmap_gettext_initialized = FALSE;
33
34   g_printerr ("im_extra_gettext\n");
35
36   if (!gucharmap_gettext_initialized)
37     {
38       bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
39 #ifdef HAVE_BIND_TEXTDOMAIN_CODESET
40       bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
41 #endif
42       gucharmap_gettext_initialized = TRUE;
43     }
44
45   return dgettext (GETTEXT_PACKAGE, str);
46 }
47
48 #endif /* #ifdef ENABLE_NLS */