]> git.0d.be Git - empathy.git/commitdiff
Remove hard-coded strings from (un)subscriptions
authorWill Thompson <will.thompson@collabora.co.uk>
Wed, 20 May 2009 17:45:20 +0000 (18:45 +0100)
committerWill Thompson <will.thompson@collabora.co.uk>
Wed, 20 May 2009 17:45:20 +0000 (18:45 +0100)
libempathy-gtk/empathy-contact-dialogs.c
libempathy-gtk/empathy-contact-list-view.c

index 056ec2d856093b768a80ed0473e18b235a64f503..7de7931537778aaac75f348af4e1a98090495500 100644 (file)
@@ -364,8 +364,7 @@ new_contact_response_cb (GtkDialog *dialog,
 
        if (contact && response == GTK_RESPONSE_OK) {
                empathy_contact_list_add (EMPATHY_CONTACT_LIST (manager),
-                                         contact,
-                                         _("I would like to add you to my contact list."));
+                                         contact, "");
        }
 
        new_contact_dialog = NULL;
index 9e73f4e6b9fde281c14ae8dd158a30b7652ed7be..9fcf5fc417dcdebe71be9d7f575b54cb40e70803 100644 (file)
@@ -1459,8 +1459,7 @@ contact_list_view_remove_activate_cb (GtkMenuItem            *menuitem,
                        EmpathyContactList *list;
 
                        list = empathy_contact_list_store_get_list_iface (priv->store);
-                       empathy_contact_list_remove (list, contact,
-                               _("Sorry, I don't want you in my contact list anymore."));
+                       empathy_contact_list_remove (list, contact, "");
                }
 
                g_free (text);