core: make translate() accessible from C++

In the core, we usually want C strings, not QStrings. Therefore,
make translated C strings directly available from C++.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2024-02-27 11:38:35 +01:00
parent a4091189b0
commit 812e9ab1d7

View file

@ -2,10 +2,22 @@
#ifndef MYGETTEXT_H
#define MYGETTEXT_H
#ifdef __cplusplus
extern "C" const char *trGettext(const char *);
static inline const char *translate(const char *, const char *arg)
{
return trGettext(arg);
}
#else
/* 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
#define QT_TRANSLATE_NOOP3(_context, arg, _comment) arg
#endif
#endif // MYGETTEXT_H