apti18n.h.in 758 B

1234567891011121314151617181920212223242526272829
  1. // -*- mode: cpp; mode: fold -*-
  2. // $Id: apti18n.h.in,v 1.6 2003/01/11 07:18:18 jgg Exp $
  3. /* Internationalization macros for apt. This header should be included last
  4. in each C file. */
  5. // Set by autoconf
  6. #undef USE_NLS
  7. #ifdef USE_NLS
  8. // apt will use the gettext implementation of the C library
  9. # include <libintl.h>
  10. # ifdef APT_DOMAIN
  11. # define _(x) dgettext(APT_DOMAIN,x)
  12. # define P_(msg,plural,n) dngettext(APT_DOMAIN,msg,plural,n)
  13. # else
  14. # define _(x) gettext(x)
  15. # define P_(msg,plural,n) ngettext(msg,plural,n)
  16. # endif
  17. # define N_(x) x
  18. #else
  19. // apt will not use any gettext
  20. # define setlocale(a, b)
  21. # define textdomain(a)
  22. # define bindtextdomain(a, b)
  23. # define _(x) x
  24. # define P_(msg,plural,n) (n == 1 ? msg : plural)
  25. # define N_(x) x
  26. #endif