/* * Copied from gnome-i18nP.h, because this header is typically not installed * * This file has to be included before any file from the GNOME libraries * to have this override the definitions that are pulled from the gnome-i18n.h * * the difference is that gnome-i18n.h is used for applications, and this is * used by libraries (because libraries have to use dcgettext instead of * gettext and they need to provide the translation domain, unlike apps). * * So you can just put this after you include config.h */ #ifndef __E_I18N_H__ #define __E_I18N_H__ #ifdef ENABLE_NLS # include # undef _ # define _(String) dgettext (PACKAGE, String) # ifdef gettext_noop # define N_(String) gettext_noop (String) # else # define N_(String) (String) # endif #else /* Stubs that do something close enough. */ # define textdomain(String) (String) # define gettext(String) (String) # define dgettext(Domain,Message) (Message) # define dcgettext(Domain,Message,Type) (Message) # define bindtextdomain(Domain,Directory) (Domain) # define _(String) (String) # define N_(String) (String) #endif #define __GNOME_I18N_H__ 1 #endif /* __E_I18N_H__ */ a> : freebsd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/japanese/another-htmllint
Commit message (Expand)AuthorAgeFilesLines
* Rename the rather surprising number of japanese/ patch-xy patchesadamw2014-07-292-0/+0
* - Stagify.kuriyama2014-06-141-3/+2
* - Use /usr/bin/unzip for zip files extraction (part 2)ak2014-06-061-2/+2
* Convert j* to USES=zipbapt2014-03-101-2/+1
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1
* - convert to the new perl5 frameworkaz2013-09-101-6/+1
* - Remove SITE_PERL from *_DEPENDS (final part)az2012-10-111-3/+1
* - Remove SITE_PERL from *_DEPENDSaz2012-06-301-1/+1