aboutsummaryrefslogtreecommitdiffstats
path: root/i18n.h
blob: d3c482a39c5f0943c2eb338e498e1d7c37f4126a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Dummy header for libintl.h */

#undef _
#ifdef ENABLE_NLS
#undef __OPTIMIZE__
#include <libintl.h>
#define _(String) gettext((String))
#define N_(String) (String)
#else
#define _(String) (String)
#define N_(String) (String)
#endif