locale.h

changeset 117
c7ad4b23a277
parent 116
5f66d3bb1c68
child 118
dbf3a6323fda
equal deleted inserted replaced
116:5f66d3bb1c68 117:c7ad4b23a277
1 /*
2 * libtu/locale.h
3 *
4 * Copyright (c) Tuomo Valkonen 2004.
5 *
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 */
9
10 #ifndef LIBTU_LOCALE_H
11 #define LIBTU_LOCALE_H
12
13 #ifdef CF_NO_GETTEXT
14
15 #define TR(X) X
16 #define DUMMY_TR(X) X
17
18 #else
19
20 #include <libintl.h>
21
22 #define TR(X) gettext(X)
23 #define DUMMY_TR(X) X
24
25 #endif
26
27 #endif /* LIBTU_LOCALE_H */

mercurial