diff options
author | Gary Coady <garycoady@ubuntu.com> | 2006-06-09 03:46:26 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2006-06-09 03:46:26 +0800 |
commit | 99587466db9866543fb05aeada5ff84e9650004f (patch) | |
tree | bb3aeb7aa90d80693afb916c65c2e523d0fc2ade /e-util | |
parent | 50abf04d9bd4b17d9c3bf72298fc442670bad2e1 (diff) | |
download | gsoc2013-evolution-99587466db9866543fb05aeada5ff84e9650004f.tar.gz gsoc2013-evolution-99587466db9866543fb05aeada5ff84e9650004f.tar.zst gsoc2013-evolution-99587466db9866543fb05aeada5ff84e9650004f.zip |
Use the correct gettext domain for translations. Fixes bug #333003.
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)
svn path=/trunk/; revision=32098
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 |