Import libtu instead of using submodules
[notion/jeffpc.git] / libtu / locale.h
blob826dd142e38788a8a2a2aa0fe7b8a111d16aa7e3
1 /*
2 * libtu/locale.h
4 * Copyright (c) Tuomo Valkonen 2004.
6 * You may distribute and modify this library under the terms of either
7 * the Clarified Artistic License or the GNU LGPL, version 2.1 or later.
8 */
10 #ifndef LIBTU_LOCALE_H
11 #define LIBTU_LOCALE_H
13 #ifdef CF_NO_GETTEXT
15 #define TR(X) X
16 #define DUMMY_TR(X) X
18 #else
20 #include <libintl.h>
22 #define TR(X) gettext(X)
23 #define DUMMY_TR(X) X
25 #endif
27 #endif /* LIBTU_LOCALE_H */