blob: 3a114a020a281ed15ee4386e590c9491ef696f6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef NOKDE_TDELOCALE_H
#define NOKDE_TDELOCALE_H
#undef TDECORE_EXPORT
#define TDECORE_EXPORT
#undef TDE_DEPRECATED
#define TDE_DEPRECATED
#undef I18N_NOOP
#define I18N_NOOP(x) (x)
#include <tqstring.h>
inline TQString i18n(const TQString &text) { return text; }
extern TQString i18n(const TQString &index, const TQString &text);
extern TQString locate(const TQString &, const TQString &);
#endif
|