summaryrefslogtreecommitdiffstats
path: root/src/i18n.h
blob: 4d8ee76c74b015af4f4876d0e2ab9cba8c931290 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifdef ENABLE_NLS

#include <libintl.h>

#define _(msgid) gettext(msgid)

#else

#define _(msgid) (msgid)

#endif