/* Public domain */ #ifndef _AGARPAINT_H_ #define _AGARPAINT_H_ #include "config/enable_nls.h" #ifdef ENABLE_NLS # include # define _(String) gettext(String) # define gettext_noop(String) (String) # define N_(String) gettext_noop(String) #else # undef _ # undef N_ # define _(s) (s) # define N_(s) (s) #endif #endif /* _AGARPAINT_H_ */