[empathy] Remove hard-coded strings from (un)subscriptions



commit b08244af933d4ce6a4d8e622c587ea7361999ec0
Author: Will Thompson <will thompson collabora co uk>
Date:   Wed May 20 18:45:20 2009 +0100

    Remove hard-coded strings from (un)subscriptions
---
 libempathy-gtk/empathy-contact-dialogs.c   |    3 +--
 libempathy-gtk/empathy-contact-list-view.c |    3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/libempathy-gtk/empathy-contact-dialogs.c b/libempathy-gtk/empathy-contact-dialogs.c
index 056ec2d..7de7931 100644
--- a/libempathy-gtk/empathy-contact-dialogs.c
+++ b/libempathy-gtk/empathy-contact-dialogs.c
@@ -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;
diff --git a/libempathy-gtk/empathy-contact-list-view.c b/libempathy-gtk/empathy-contact-list-view.c
index 9e73f4e..9fcf5fc 100644
--- a/libempathy-gtk/empathy-contact-list-view.c
+++ b/libempathy-gtk/empathy-contact-list-view.c
@@ -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);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]