Undo part of previous delta, so that _() calls dgettext() not gettext().

This commit is contained in:
Nick Clifton 2000-05-30 21:04:24 +00:00
parent 38048eb911
commit bb08852125
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
#ifdef ENABLE_NLS
# include <libintl.h>
# define _(String) gettext (String)
# define _(String) dgettext (PACKAGE, String)
# ifdef gettext_noop
# define N_(String) gettext_noop (String)
# else