Files
ipx-utils/tools/nls.h
2026-04-29 19:58:43 +02:00

23 lines
352 B
C

#ifndef IPX_UTILS_NLS_H
#define IPX_UTILS_NLS_H
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#if defined(HAVE_LIBINTL_H) && defined(HAVE_GETTEXT)
# include <libintl.h>
#else
# define gettext(String) (String)
#endif
#ifndef _
# define _(String) gettext(String)
#endif
#ifndef N_
# define N_(String) (String)
#endif
#endif /* IPX_UTILS_NLS_H */