summaryrefslogtreecommitdiff
path: root/hangul/hangul-gettext.h
blob: 05606a2b8899d3bd6d99cf2eb0b12e3aa6ce2d96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef libhangul_hangul_gettext_h
#define libhangul_hangul_gettext_h

#ifdef ENABLE_NLS

#include <libintl.h>

#define _(x)	    dgettext(GETTEXT_PACKAGE, x)
#define N_(x)	    x

#else /* ENABLE_NLS */

#define _(x)	    (x)
#define N_(x)	    x

#endif /* ENABLE_NLS */

#endif // libhangul_hangul_gettext_h