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

#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