~ubuntu-branches/ubuntu/raring/nautilus-sendto-universe/raring

« back to all changes in this revision

Viewing changes to src/plugins/evolution/evolution.c

  • Committer: Bazaar Package Importer
  • Author(s): Onkar Shinde
  • Date: 2009-07-30 23:31:20 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090730233120-ut3baoo6lde6q9gk
Tags: 1.1.6-0ubuntu1
* New upstream release. (LP: #377192)
* debian/control
  - Remove libglade2-dev build dependency.
  - Bump version of libgtk2.0-dev build dependency to 2.12.
  - Remove empathy related build dependencies.
  - Update description to remove empathy references.
* debian/nautilus-sendto-universe.install
  - Remove empathy plugin.
* debian/patches/10_fix_empathy_2.26.patch
  - Remove. Not needed anymore.
* debian/README.Debian.
  - Update to remove empathy references.

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
        g_print ("Init evolution plugin\n");
86
86
        
87
87
        bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
88
 
        bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
89
 
        textdomain (GETTEXT_PACKAGE);
 
88
        bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
90
89
 
91
90
        client = gconf_client_get_default ();
92
91
        mail_cmd = gconf_client_get_string (client, DEFAULT_MAILTO, NULL);
102
101
                        type = MAILER_BALSA;
103
102
                else if (strstr (mail_cmd, "thunder"))
104
103
                        type = MAILER_THUNDERBIRD;
105
 
                else if (strstr (mail_cmd, "sylpheed"))
 
104
                else if (strstr (mail_cmd, "sylpheed") || strstr (mail_cmd, "claws"))
106
105
                        type = MAILER_SYLPHEED;
107
106
        }
108
107
 
364
363
NstPluginInfo plugin_info = {
365
364
        "emblem-mail",
366
365
        "evolution",
367
 
        N_("Email (Evolution)"),
 
366
        N_("Email"),
368
367
        FALSE,
369
368
        FALSE,
370
369
        init,