diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-04-30 06:39:35 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-04-30 06:39:35 +0800 |
commit | fb0dde8aee1e2464c1c18949134ae67717f324bf (patch) | |
tree | 4f327aaf34b0e2381432308df6a9924ee6528e39 /e-util | |
parent | 1ea21ba3e616d4a2b38ed6cbaf0fe3ff8f9140db (diff) | |
download | gsoc2013-evolution-fb0dde8aee1e2464c1c18949134ae67717f324bf.tar gsoc2013-evolution-fb0dde8aee1e2464c1c18949134ae67717f324bf.tar.gz gsoc2013-evolution-fb0dde8aee1e2464c1c18949134ae67717f324bf.tar.bz2 gsoc2013-evolution-fb0dde8aee1e2464c1c18949134ae67717f324bf.tar.lz gsoc2013-evolution-fb0dde8aee1e2464c1c18949134ae67717f324bf.tar.xz gsoc2013-evolution-fb0dde8aee1e2464c1c18949134ae67717f324bf.tar.zst gsoc2013-evolution-fb0dde8aee1e2464c1c18949134ae67717f324bf.zip |
Added a sed job on po/Makefile.in.in here.
2002-04-29 Christopher James Lahey <clahey@ximian.com>
* configure.in: Added a sed job on po/Makefile.in.in here.
* gal/util/e-i18n.h: Made this use
GNOME_EXPLICIT_TRANSLATION_DOMAIN if it's set.
svn path=/trunk/; revision=16641
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-i18n.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/e-util/e-i18n.h b/e-util/e-i18n.h index e10ad4fa2b..c376a22014 100644 --- a/e-util/e-i18n.h +++ b/e-util/e-i18n.h @@ -43,7 +43,11 @@ BEGIN_GNOME_DECLS #ifdef ENABLE_NLS # include <libintl.h> # undef _ -# define _(String) dgettext (PACKAGE, String) +# ifdef GNOME_EXPLICIT_TRANSLATION_DOMAIN +# define _(String) dgettext (GNOME_EXPLICIT_TRANSLATION_DOMAIN, String) +# else +# define _(String) dgettext (PACKAGE, String) +# endif # ifdef gettext_noop # define N_(String) gettext_noop (String) # else |