** See bug #300891
authorChangwoo Ryu <cwryu@debian.org>
Tue, 9 Aug 2005 05:42:26 +0000 (05:42 +0000)
committerMichael Zucci <zucchi@src.gnome.org>
Tue, 9 Aug 2005 05:42:26 +0000 (05:42 +0000)
2005-04-17  Changwoo Ryu  <cwryu@debian.org>

        ** See bug #300891

        * Makefile.am (INCLUDES): define
        CAMEL_EXPLICIT_TRANSLATION_DOMAIN.

        * camel-imap4-provider.c (camel_provider_module_init):
        set translation_domain in CamelProvider struct.

camel/providers/imap4/ChangeLog
camel/providers/imap4/Makefile.am
camel/providers/imap4/camel-imap4-provider.c

index 9a19662..c149ce5 100644 (file)
@@ -1,3 +1,13 @@
+2005-04-17  Changwoo Ryu  <cwryu@debian.org>
+
+       ** See bug #300891
+       
+       * Makefile.am (INCLUDES): define
+       CAMEL_EXPLICIT_TRANSLATION_DOMAIN.
+
+       * camel-imap4-provider.c (camel_provider_module_init):
+       set translation_domain in CamelProvider struct.
+
 2005-08-02  Shreyas Srinivasan  <sshreyas@novell.com>
 
        * camel-imap-store.c (connect_to_server_wrapper): only use command
index 3cb8b85..208545d 100644 (file)
@@ -12,6 +12,7 @@ INCLUDES =                                    \
        $(CAMEL_CFLAGS)                         \
        $(GNOME_INCLUDEDIR)                     \
        $(GTK_INCLUDEDIR)                       \
+       -DCAMEL_EXPLICIT_TRANSLATION_DOMAIN=\"$(GETTEXT_PACKAGE)\"      \
        -DG_LOG_DOMAIN=\"camel-imap4-provider\"
 
 libcamelimap4_la_SOURCES =                     \
index d8a2482..7a47183 100644 (file)
@@ -153,6 +153,7 @@ camel_provider_module_init (void)
        imap4_provider.url_equal = imap4_url_equal;
        imap4_provider.authtypes = camel_sasl_authtype_list (FALSE);
        imap4_provider.authtypes = g_list_prepend (imap4_provider.authtypes, &camel_imap4_password_authtype);
+       imap4_provider.translation_domain = GETTEXT_PACKAGE;
        
        camel_provider_register (&imap4_provider);
 }