aboutsummaryrefslogtreecommitdiffstats
path: root/i18n.h
blob: f3adc7a3fe56f6b2432e2b6d198004109020f9a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Dummy header for libintl.h
 *
 * For license terms, see the file COPYING in this directory.
 */
#undef _
#ifdef ENABLE_NLS
#undef __OPTIMIZE__
#include <libintl.h>
#include <langinfo.h>
#define GT_(String) gettext((String))
#define NGT_(String) (String)
#else
#define GT_(String) (String)
#define NGT_(String) (String)
#endif