blob: d3283998d03921a421ae37e90c319d6ba74a668b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#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
|