summaryrefslogtreecommitdiffstats
path: root/src/common/nokde/nokde_klocale.h
blob: a1cf720a876ee5adf0c3e0b6dd3c1da0384e7e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef NOKDE_KLOCALE_H
#define NOKDE_KLOCALE_H

#undef KDECORE_EXPORT
#define KDECORE_EXPORT

#undef KDE_DEPRECATED
#define KDE_DEPRECATED

#undef I18N_NOOP
#define I18N_NOOP(x) (x)
#include <qstring.h>
inline QString i18n(const QString &text) { return text; }
extern QString i18n(const QString &index, const QString &text);
extern QString locate(const QString &, const QString &);

#endif