Comment fix
[mim] / src / ui / im-extra-intl.h
1 /* $Id: im-extra-intl.h,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 #ifndef GUCHARMAP_INTL_H
21
22 #if HAVE_CONFIG_H
23 # include "config.h"
24 #endif
25
26 #undef _
27 #undef N_
28
29 #ifdef ENABLE_NLS
30
31 gchar * im_extra_gettext (const gchar *str);
32
33 # include <libintl.h>
34
35 # define _(String) gucharmap_gettext(String)
36
37 # ifdef gettext_noop
38 #  define N_(String) gettext_noop(String)
39 # else
40 #  define N_(String) (String)
41 # endif
42
43 #else /* NLS is disabled */
44
45 # define _(String) (String)
46 # define N_(String) (String)
47
48 # undef textdomain
49 # undef gettext
50 # undef dgettext
51 # undef dcgettext
52 # undef bindtextdomain
53
54 # define textdomain(String) (String)
55 # define gettext(String) (String)
56 # define dgettext(Domain,String) (String)
57 # define dcgettext(Domain,String,Type) (String)
58 # define bindtextdomain(Domain,Directory) (Domain) 
59
60 #endif
61
62 #endif /* #ifndef GUCHARMAP_INTL_H */