home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2002 April / pcpro0402.iso / essentials / graphics / Gimp / gimp-src-20001226.exe / src / gimp / plug-ins / perl / perl-intl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-13  |  305 b   |  18 lines

  1. #ifndef ENABLE_NLS
  2. # ifdef HAVE_LIBINTL_H
  3. #  define ENABLE_NLS
  4. # endif
  5. #endif
  6.  
  7. #ifdef ENABLE_NLS
  8. # include <libintl.h>
  9. #else
  10. # define gettext(s) (s)
  11. # define dgettext(d,s) (s)
  12. # define textdomain(d) (d)
  13. # define bindtextdomain(d,p) (p)
  14. #endif
  15.  
  16. #define __(s) gettext (s)
  17. #define N_(s) (s)
  18.