diff --git a/WINGs/wconfig.h b/WINGs/wconfig.h new file mode 100644 index 00000000..c9a64428 --- /dev/null +++ b/WINGs/wconfig.h @@ -0,0 +1,18 @@ + + +#ifndef WINGS_CONFIG_H_ +#define WINGS_CONFIG_H_ + + +#include "../src/config.h" + +#if defined(HAVE_LIBINTL_H) && defined(I18N) +# include +# define _(text) dgettext("WINGs", text) +#else +# define _(text) (text) +#endif + + +#endif /* WINGS_CONFIG_H_ */ +