1 #ifndef libhangul_hangul_gettext_h
2 #define libhangul_hangul_gettext_h
3 
4 #ifdef ENABLE_NLS
5 
6 #include <libintl.h>
7 
8 #define _(x)	    dgettext(GETTEXT_PACKAGE, x)
9 #define N_(x)	    x
10 
11 #else /* ENABLE_NLS */
12 
13 #define _(x)	    (x)
14 #define N_(x)	    x
15 
16 #endif /* ENABLE_NLS */
17 
18 #endif // libhangul_hangul_gettext_h
19