subsurface/gettext.h

10 lines
207 B
C
Raw Normal View History

#ifndef MYGETTEXT_H
#define MYGETTEXT_H
/* this is for the Qt based translations */
extern const char *gettext(const char *);
#define tr(arg) gettext(arg)
#define QT_TR_NOOP(arg) arg
#endif // MYGETTEXT_H