Applied patch from Zbigniew Chyla:

2006-06-27  Sven Neumann  <sven@gimp.org>

	Applied patch from Zbigniew Chyla:

	* app/gimp-intl.h
	* libgimp/stdplugins-intl.h: removed most content and include
	<glib/gi18n.h> instead.

	* libgimp/libgimp-intl.h: define ngettext() macro as wrapper
around
	dngettext().
This commit is contained in:
Sven Neumann
2006-06-27 07:55:41 +00:00
committed by Sven Neumann
parent 7b1327dd86
commit 4c73ba1b17
4 changed files with 16 additions and 21 deletions

View File

@ -34,6 +34,9 @@
#undef gettext
#define gettext(String) dgettext (GETTEXT_PACKAGE "-libgimp", String)
#undef ngettext
#define ngettext(String1, String2, number) dngettext (GETTEXT_PACKAGE "-libgimp", String1, String2, number)
#ifdef gettext_noop
# define N_(String) gettext_noop (String)
#else