From 3304eb34c14c7f369c1ace0f39c3df47724caf54 Mon Sep 17 00:00:00 2001 From: Thorsten Kukuk Date: Wed, 20 Jul 2005 14:52:38 +0000 Subject: Relevant BUGIDs: none Purpose of commit: new feature Commit summary: --------------- Mark message strings for translation --- config.h.in | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'config.h.in') diff --git a/config.h.in b/config.h.in index acf6c435..d9c445b3 100644 --- a/config.h.in +++ b/config.h.in @@ -243,6 +243,15 @@ `char[]'. */ #undef YYTEXT_POINTER +#ifdef ENABLE_NLS +#include +#define _(msgid) dgettext("Linux-PAM", msgid) +#define N_(msgid) msgid +#else +#define _(msgid) (msgid) +#define N_(msgid) msgid +#endif /* ENABLE_NLS */ + #ifdef MEMORY_DEBUG /* * this is basically a hack - we need to include a semiarbitrary -- cgit v1.2.3