From 2b74f5b7671e2cb7d4d71d8e5167c5965a1784e9 Mon Sep 17 00:00:00 2001 From: Fumitoshi UKAI Date: Tue, 23 Sep 2003 18:42:24 +0000 Subject: gettextize initial modifications --- fm.h | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to 'fm.h') diff --git a/fm.h b/fm.h index 1a78821..c48481d 100644 --- a/fm.h +++ b/fm.h @@ -1,4 +1,4 @@ -/* $Id: fm.h,v 1.120 2003/09/22 21:02:18 ukai Exp $ */ +/* $Id: fm.h,v 1.121 2003/09/23 18:42:25 ukai Exp $ */ /* * w3m: WWW wo Miru utility * @@ -46,6 +46,28 @@ #include "wc.h" #include "wtf.h" #endif + +#ifdef HAVE_LOCALE_H +#include +#endif +#if !HAVE_SETLOCALE +#define setlocale(category, locale) /* empty */ +#endif + +#if ENABLE_NLS +#include +#define _(String) gettext (String) +#define N_(String) (String) +#else +# undef bindtextdomain +# define bindtextdomain(Domain, Directory) /* empty */ +# undef textdomain +# define textdomain(Domain) /* empty */ +# define _(Text) Text +# define N_(Text) Text +# define gettext(Text) Text +#endif + #include "form.h" #include "frame.h" #include "parsetag.h" -- cgit v1.2.3