mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
86a80d37eb
Just to make sure there's no confusion - we are NOT calling gettext. We are calling tr from a gettext like interface. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
9 lines
245 B
C
9 lines
245 B
C
#ifndef MYGETTEXT_H
|
|
#define MYGETTEXT_H
|
|
|
|
/* this is for the Qt based translations */
|
|
extern const char *trGettext(const char *);
|
|
#define translate(_context, arg) trGettext(arg)
|
|
#define QT_TRANSLATE_NOOP(_context, arg) arg
|
|
|
|
#endif // MYGETTEXT_H
|