Mercurial > geeqie
view src/intl.h @ 11:3c3b40dbde11
########
DO NOT BASE ENHANCEMENTS OR TRANSLATION UPDATES ON CODE IN THIS CVS!
This CVS is never up to date with current development and is provided
solely for reference purposes, please use the latest official release
package when making any changes or translation updates.
########
Sync to updated autogen.sh so building is actually possible.
author | gqview |
---|---|
date | Tue, 01 Mar 2005 14:50:03 +0000 |
parents | d907d608745f |
children | 4b2d7f9af171 |
line wrap: on
line source
#ifndef __INTL_H__ #define __INTL_H__ #ifdef ENABLE_NLS # include <libintl.h> # define _(String) dgettext(PACKAGE,String) # ifdef gettext_noop # define N_(String) gettext_noop(String) # else # define N_(String) (String) # endif /* gettext_noop */ #else # define _(String) (String) # define N_(String) (String) # define textdomain(String) (String) # define gettext(String) (String) # define dgettext(Domain,String) (String) # define dcgettext(Domain,String,Type) (String) # define bindtextdomain(Domain,Directory) (Domain) # define bind_textdomain_codeset(Domain,String) (Domain) #endif /* ENABLE_NLS */ #endif