diff options
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-i18n.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 3ac20fdfb5..995c008a9b 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2006-06-08 Gary Coady <garycoady@ubuntu.com> + + * e-i18n.h: Use the correct gettext domain for translations. + Fixes bug #333003. (Committed by Andre Klapper) + 2006-06-02 Tor Lillqvist <tml@novell.com> * e-util.c: Don't need the Win32-only fix_percent_l() after all, diff --git a/e-util/e-i18n.h b/e-util/e-i18n.h index 829b2480aa..d98afa31c8 100644 --- a/e-util/e-i18n.h +++ b/e-util/e-i18n.h @@ -48,7 +48,7 @@ G_BEGIN_DECLS # define E_I18N_DOMAIN GNOME_EXPLICIT_TRANSLATION_DOMAIN # else /* No parentheses allowed here since that breaks string concatenation. */ -# define E_I18N_DOMAIN PACKAGE +# define E_I18N_DOMAIN GETTEXT_PACKAGE # endif # define _(String) e_gettext (String) # ifdef gettext_noop |