23 lines
352 B
C
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 */
|