Theodore Ts'o | d9c56d3 | 2000-02-08 00:47:55 +0000 | [diff] [blame] | 1 | #ifdef ENABLE_NLS |
2 | #include <libintl.h> | ||||
3 | #include <locale.h> | ||||
4 | #define _(a) (gettext (a)) | ||||
5 | #ifdef gettext_noop | ||||
6 | #define N_(a) gettext_noop (a) | ||||
7 | #else | ||||
8 | #define N_(a) (a) | ||||
9 | #endif | ||||
10 | /* FIXME */ | ||||
11 | #define NLS_CAT_NAME "e2fsprogs" | ||||
12 | #define LOCALEDIR "/usr/share/locale" | ||||
13 | /* FIXME */ | ||||
14 | #else | ||||
15 | #define _(a) (a) | ||||
16 | #define N_(a) a | ||||
17 | #endif |