diff options
-rw-r--r-- | i18n.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -0,0 +1,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 |