diff options
author | James Henstridge <jamesh@src.gnome.org> | 2001-12-05 03:46:40 +0000 |
---|---|---|
committer | James Henstridge <jamesh@src.gnome.org> | 2001-12-05 03:46:40 +0000 |
commit | 1e3512c8764cf5f73f6d576124bc6718e63506c1 (patch) | |
tree | 5259e58d1808c376186462bc26ea7ac8261a1ff9 /intl/libgettext.h | |
parent | 83ad7a54f7caf13e0a753c5d4f3d11fc4cc019fb (diff) | |
download | shared-mime-info-1e3512c8764cf5f73f6d576124bc6718e63506c1.tar.gz |
welcome back intl (again)
Note to self. Use:
cvs update -j HEAD -j before-delete .
rather than:
cvs update -j before-delete .
svn path=/trunk/; revision=2173
Diffstat (limited to 'intl/libgettext.h')
-rw-r--r-- | intl/libgettext.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/intl/libgettext.h b/intl/libgettext.h new file mode 100644 index 00000000..553382ca --- /dev/null +++ b/intl/libgettext.h @@ -0,0 +1,48 @@ +/* Convenience header for conditional use of GNU <libintl.h>. + Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + +#ifndef _LIBGETTEXT_H +#define _LIBGETTEXT_H 1 + +/* NLS can be disabled through the configure --disable-nls option. */ +#if ENABLE_NLS + +/* Get declarations of GNU message catalog functions. */ +# include <libintl.h> + +#else + +# define gettext(Msgid) (Msgid) +# define dgettext(Domainname, Msgid) (Msgid) +# define dcgettext(Domainname, Msgid, Category) (Msgid) +# define ngettext(Msgid1, Msgid2, N) \ + ((N) == 1 ? (char *) (Msgid1) : (char *) (Msgid2)) +# define dngettext(Domainname, Msgid1, Msgid2, N) \ + ((N) == 1 ? (char *) (Msgid1) : (char *) (Msgid2)) +# define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ + ((N) == 1 ? (char *) (Msgid1) : (char *) (Msgid2)) +# define textdomain(Domainname) ((char *) (Domainname)) +# define bindtextdomain(Domainname, Dirname) ((char *) (Dirname)) +# define bind_textdomain_codeset(Domainname, Codeset) ((char *) (Codeset)) + +#endif + +/* For automatical extraction of messages sometimes no real + translation is needed. Instead the string itself is the result. */ +#define gettext_noop(Str) (Str) + +#endif /* _LIBGETTEXT_H */ |