diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-02-15 13:02:27 +0100 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-02-15 13:02:27 +0100 |
commit | d44b437bd2897bf7fbfbde07a4511c6f7b9ef6a2 (patch) | |
tree | 54aff108a79b080e2cbd706e9609ec66a586ce78 /buildlib | |
parent | af3f8112590edf58cab36e72bca6d5f8e161fbc3 (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 |