summaryrefslogtreecommitdiffstats
path: root/core/gettext.h
blob: ed2f56d7850ef320b3b20ab17691c0db068300f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: GPL-2.0
#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
#define QT_TRANSLATE_NOOP3(_context, arg, _comment) arg

#endif // MYGETTEXT_H