projects
/
apt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
add REAMDE.md
[apt.git]
/
buildlib
/
apti18n.h.in
diff --git
a/buildlib/apti18n.h.in
b/buildlib/apti18n.h.in
index e7beceb09ee6e6c4a95e863127f985284a3641e6..2202c5b193f0bc8570b191df5a3d8ee13e9fc958 100644
(file)
--- a/
buildlib/apti18n.h.in
+++ b/
buildlib/apti18n.h.in
@@
-8,11
+8,14
@@
#ifdef USE_NLS
// apt will use the gettext implementation of the C library
#ifdef USE_NLS
// apt will use the gettext implementation of the C library
-# include <libintl.h>
+#include <libintl.h>
+#include <locale.h>
# ifdef APT_DOMAIN
# define _(x) dgettext(APT_DOMAIN,x)
# 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)
# else
# define _(x) gettext(x)
+# define P_(msg,plural,n) ngettext(msg,plural,n)
# endif
# define N_(x) x
#else
# endif
# define N_(x) x
#else
@@
-21,5
+24,7
@@
# define textdomain(a)
# define bindtextdomain(a, b)
# define _(x) x
# define textdomain(a)
# define bindtextdomain(a, b)
# define _(x) x
+# define P_(msg,plural,n) (n == 1 ? msg : plural)
# define N_(x) x
# define N_(x) x
+# define dgettext(d, m) m
#endif
#endif