mirror of https://github.com/GNOME/gimp.git
18 lines
288 B
C
18 lines
288 B
C
#ifndef ENABLE_NLS
|
|
# ifdef HAVE_LIBINTL_H
|
|
# define ENABLE_NLS
|
|
# endif
|
|
#endif
|
|
|
|
#ifdef ENABLE_NLS
|
|
# include <libintl.h>
|
|
#else
|
|
# define gettext(s) (s)
|
|
# define dgettext(d,s) (s)
|
|
# define textdomain(d) (d)
|
|
# define bindtextdomain(d,p) (p)
|
|
#endif
|
|
|
|
#define __(s) gettext (s)
|
|
#define N_(s) (s)
|