Dismbiguate gettext

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>
This commit is contained in:
Dirk Hohndel 2013-10-10 00:15:21 -07:00
parent 193d20c479
commit 86a80d37eb
4 changed files with 8 additions and 8 deletions

View file

@ -2,8 +2,8 @@
#define MYGETTEXT_H
/* this is for the Qt based translations */
extern const char *gettext(const char *);
#define translate(_context, arg) gettext(arg)
extern const char *trGettext(const char *);
#define translate(_context, arg) trGettext(arg)
#define QT_TRANSLATE_NOOP(_context, arg) arg
#endif // MYGETTEXT_H