]>
Commit | Line | Data |
---|---|---|
1e24cc5b AD |
1 | /* Convenience header for conditional use of GNU <libintl.h>. |
2 | Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc. | |
705db0b5 AD |
3 | |
4 | This program is free software; you can redistribute it and/or modify | |
5 | it under the terms of the GNU General Public License as published by | |
6 | the Free Software Foundation; either version 2, or (at your option) | |
7 | any later version. | |
8 | ||
9 | This program is distributed in the hope that it will be useful, | |
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | GNU General Public License for more details. | |
13 | ||
14 | You should have received a copy of the GNU General Public License | |
15 | along with this program; if not, write to the Free Software Foundation, | |
16 | Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ | |
17 | ||
1e24cc5b AD |
18 | #ifndef _LIBGETTEXT_H |
19 | #define _LIBGETTEXT_H 1 | |
705db0b5 | 20 | |
1e24cc5b | 21 | /* NLS can be disabled through the configure --disable-nls option. */ |
705db0b5 AD |
22 | #if ENABLE_NLS |
23 | ||
1e24cc5b AD |
24 | /* Get declarations of GNU message catalog functions. */ |
25 | # include <libintl.h> | |
705db0b5 AD |
26 | |
27 | #else | |
28 | ||
29 | # define gettext(Msgid) (Msgid) | |
30 | # define dgettext(Domainname, Msgid) (Msgid) | |
31 | # define dcgettext(Domainname, Msgid, Category) (Msgid) | |
1e24cc5b AD |
32 | # define ngettext(Msgid1, Msgid2, N) \ |
33 | ((N) == 1 ? (char *) (Msgid1) : (char *) (Msgid2)) | |
34 | # define dngettext(Domainname, Msgid1, Msgid2, N) \ | |
35 | ((N) == 1 ? (char *) (Msgid1) : (char *) (Msgid2)) | |
36 | # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ | |
37 | ((N) == 1 ? (char *) (Msgid1) : (char *) (Msgid2)) | |
38 | # define textdomain(Domainname) ((char *) (Domainname)) | |
39 | # define bindtextdomain(Domainname, Dirname) ((char *) (Dirname)) | |
40 | # define bind_textdomain_codeset(Domainname, Codeset) ((char *) (Codeset)) | |
705db0b5 AD |
41 | |
42 | #endif | |
43 | ||
1e24cc5b AD |
44 | /* For automatical extraction of messages sometimes no real |
45 | translation is needed. Instead the string itself is the result. */ | |
46 | #define gettext_noop(Str) (Str) | |
705db0b5 | 47 | |
1e24cc5b | 48 | #endif /* _LIBGETTEXT_H */ |