aboutsummaryrefslogtreecommitdiffstats
path: root/i18n.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-09-24 20:13:57 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-09-24 20:13:57 +0000
commita12da4ee65e0d140bbbcb811eef1cba93785ce35 (patch)
treec549258dcd9b8d2848da3135cb86d51c75138097 /i18n.h
parentf5ece9304c6f778f8888860b50d431dca147074c (diff)
downloadfetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.tar.gz
fetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.tar.bz2
fetchmail-a12da4ee65e0d140bbbcb811eef1cba93785ce35.zip
_( -> GT_(
svn path=/trunk/; revision=3478
Diffstat (limited to 'i18n.h')
-rw-r--r--i18n.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/i18n.h b/i18n.h
index d3c482a3..1dd3bd17 100644
--- a/i18n.h
+++ b/i18n.h
@@ -4,9 +4,9 @@
#ifdef ENABLE_NLS
#undef __OPTIMIZE__
#include <libintl.h>
-#define _(String) gettext((String))
-#define N_(String) (String)
+#define GT_(String) gettext((String))
+#define NGT_(String) (String)
#else
-#define _(String) (String)
-#define N_(String) (String)
+#define GT_(String) (String)
+#define NGT_(String) (String)
#endif