]>
git.saurik.com Git - apt.git/blob - CMake/apti18n.h.in
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
10 // apt will use the gettext implementation of the C library
14 # define _(x) dgettext(APT_DOMAIN,x)
15 # define P_(msg,plural,n) dngettext(APT_DOMAIN,msg,plural,n)
17 # define _(x) gettext(x)
18 # define P_(msg,plural,n) ngettext(msg,plural,n)
22 // apt will not use any gettext
23 # define setlocale(a, b)
24 # define textdomain(a)
25 # define bindtextdomain(a, b)
27 # define P_(msg,plural,n) (n == 1 ? msg : plural)
29 # define dgettext(d, m) m