X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=lib%2Fintl.h;fp=lib%2Fintl.h;h=b124bef3bbaaf9c582a09f977286b245f1b956ba;hb=203e950e3d3c76795fa49895d040f732adad2049;hp=0000000000000000000000000000000000000000;hpb=a11eb994c38b1ef41ea05b56736f70cc396e0ff8;p=apps%2Fmadmutt.git diff --git a/lib/intl.h b/lib/intl.h new file mode 100644 index 0000000..b124bef --- /dev/null +++ b/lib/intl.h @@ -0,0 +1,21 @@ +#ifndef _LIB_INTL_H +#define _LIB_INTL_H + +/* + * config.h must be included by source file! + */ + +# ifdef ENABLE_NLS +# include +# define _(a) (gettext (a)) +# ifdef gettext_noop +# define N_(a) gettext_noop (a) +# else +# define N_(a) (a) +# endif +# else +# define _(a) (a) +# define N_(a) a +# endif + +#endif /* !_LIB_INTL_H */