| 46 * Thank you Manuel, and thank you Alex's good friend Google. |
46 * Thank you Manuel, and thank you Alex's good friend Google. |
| 47 */ |
47 */ |
| 48 #ifdef ENABLE_NLS |
48 #ifdef ENABLE_NLS |
| 49 # include <locale.h> |
49 # include <locale.h> |
| 50 # include <libintl.h> |
50 # include <libintl.h> |
| |
51 # undef printf |
| 51 # define _(String) ((const char *)dgettext(PACKAGE, String)) |
52 # define _(String) ((const char *)dgettext(PACKAGE, String)) |
| 52 # ifdef gettext_noop |
53 # ifdef gettext_noop |
| 53 # define N_(String) gettext_noop (String) |
54 # define N_(String) gettext_noop (String) |
| 54 # else |
55 # else |
| 55 # define N_(String) (String) |
56 # define N_(String) (String) |