]> git.saurik.com Git - apt.git/blobdiff - buildlib/apti18n.h.in
document the pkg:any specialcasing in FindPkg as well to make it clear
[apt.git] / buildlib / apti18n.h.in
index 8124576430b2fa8e9de213517d5f57d86d9dec4b..6928d626c49c7563513c225aef9443718fc8acc2 100644 (file)
 # 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
 // apt will not use any gettext
 # define setlocale(a, b)
+# define textdomain(a)
+# define bindtextdomain(a, b)
 # define _(x) x
+# define P_(msg,plural,n) (n == 1 ? msg : plural)
+# define N_(x) x
 #endif