aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2011-03-11 08:39:48 +0800
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2011-03-11 08:39:48 +0800
commit20e419d127c87e1c00c1dbe6236ac013090ea319 (patch)
treed1e17d15ae06353a0f1755ac4c879b3b9d904c16
parent0e3cb52a72f79ff77fa4cf2445c3c3eae4a9cf76 (diff)
downloadgsoc2013-empathy-20e419d127c87e1c00c1dbe6236ac013090ea319.tar
gsoc2013-empathy-20e419d127c87e1c00c1dbe6236ac013090ea319.tar.gz
gsoc2013-empathy-20e419d127c87e1c00c1dbe6236ac013090ea319.tar.bz2
gsoc2013-empathy-20e419d127c87e1c00c1dbe6236ac013090ea319.tar.lz
gsoc2013-empathy-20e419d127c87e1c00c1dbe6236ac013090ea319.tar.xz
gsoc2013-empathy-20e419d127c87e1c00c1dbe6236ac013090ea319.tar.zst
gsoc2013-empathy-20e419d127c87e1c00c1dbe6236ac013090ea319.zip
Reword 'Remove Contact'
This comes from usability feedback from Canonical
-rw-r--r--libempathy-gtk/empathy-individual-view.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-individual-view.c b/libempathy-gtk/empathy-individual-view.c
index 29bf2e645..34bb7f32d 100644
--- a/libempathy-gtk/empathy-individual-view.c
+++ b/libempathy-gtk/empathy-individual-view.c
@@ -2237,11 +2237,11 @@ individual_view_remove_dialog_show (GtkWindow *parent,
if (block_button)
gtk_dialog_add_button (GTK_DIALOG (dialog),
- _("Delete and Block"), GTK_RESPONSE_REJECT);
+ _("Remove and Block"), GTK_RESPONSE_REJECT);
gtk_dialog_add_buttons (GTK_DIALOG (dialog),
GTK_STOCK_CANCEL, GTK_RESPONSE_NO,
- GTK_STOCK_DELETE, GTK_RESPONSE_YES, NULL);
+ GTK_STOCK_REMOVE, GTK_RESPONSE_YES, NULL);
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
"%s", secondary_text);
@@ -2362,7 +2362,7 @@ individual_view_remove_activate_cb (GtkMenuItem *menuitem,
parent = empathy_get_toplevel_window (GTK_WIDGET (view));
text =
g_strdup_printf (
- _("Do you really want to remove the contact '%s'?"),
+ _("Are you sure you want to remove '%s' from your contacts?"),
folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)));
res = individual_view_remove_dialog_show (parent, _("Removing contact"),
text, can_block);