diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-02-18 00:31:49 +0100 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-02-18 00:31:49 +0100 |
commit | f0f2f956957af36389790fd47899a1f65302b21c (patch) | |
tree | f62bf4eac9a4055be685deffc68ec81127adf0ce /buildlib | |
parent | d7cf5923a093e89ab5aac0bf8cd1c3042997990c (diff) |
* buildlib/apti18n.h.in, po/makefile:
- add ngettext support with P_()
Diffstat (limited to 'buildlib')
-rw-r--r-- | buildlib/apti18n.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/buildlib/apti18n.h.in b/buildlib/apti18n.h.in index e7beceb09..6928d626c 100644 --- a/buildlib/apti18n.h.in +++ b/buildlib/apti18n.h.in @@ -11,8 +11,10 @@ # include <libintl.h> # ifdef APT_DOMAIN # define _(x) dgettext(APT_DOMAIN,x) +# define P_(msg,plural,n) dngettext(APT_DOMAIN,msg,plural,n) # else # define _(x) gettext(x) +# define P_(msg,plural,n) ngettext(msg,plural,n) # endif # define N_(x) x #else @@ -21,5 +23,6 @@ # define textdomain(a) # define bindtextdomain(a, b) # define _(x) x +# define P_(msg,plural,n) (n == 1 ? msg : plural) # define N_(x) x #endif |