1 #ifndef _GETTEXT_H
2 #define _GETTEXT_H 1
3 
4 #if ENABLE_NLS
5 
6 # include <libintl.h>
7 #define _(s) gettext(s)
8 
9 #else
10 
11 #define _(s) (s)
12 
13 #endif
14 
15 #endif
16