aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2011-03-11 08:08:06 +0800
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2011-03-11 08:08:06 +0800
commit0e3cb52a72f79ff77fa4cf2445c3c3eae4a9cf76 (patch)
treea7f9d1032da1de857953d3e927f5e9ab77a83d6e
parentcf3de9d34d649a4b4711224ff581710542de3bab (diff)
downloadgsoc2013-empathy-0e3cb52a72f79ff77fa4cf2445c3c3eae4a9cf76.tar
gsoc2013-empathy-0e3cb52a72f79ff77fa4cf2445c3c3eae4a9cf76.tar.gz
gsoc2013-empathy-0e3cb52a72f79ff77fa4cf2445c3c3eae4a9cf76.tar.bz2
gsoc2013-empathy-0e3cb52a72f79ff77fa4cf2445c3c3eae4a9cf76.tar.lz
gsoc2013-empathy-0e3cb52a72f79ff77fa4cf2445c3c3eae4a9cf76.tar.xz
gsoc2013-empathy-0e3cb52a72f79ff77fa4cf2445c3c3eae4a9cf76.tar.zst
gsoc2013-empathy-0e3cb52a72f79ff77fa4cf2445c3c3eae4a9cf76.zip
Update the wording of the contact blocking dialog
Include the list of personas which will not be blocked.
-rw-r--r--libempathy-gtk/empathy-individual-dialogs.c71
1 files changed, 56 insertions, 15 deletions
diff --git a/libempathy-gtk/empathy-individual-dialogs.c b/libempathy-gtk/empathy-individual-dialogs.c
index 07fe24a53..938406e31 100644
--- a/libempathy-gtk/empathy-individual-dialogs.c
+++ b/libempathy-gtk/empathy-individual-dialogs.c
@@ -161,6 +161,18 @@ empathy_new_individual_dialog_show_with_individual (GtkWindow *parent,
tp_clear_object (&contact);
}
+static char *
+contact_pretty_name (TpContact *contact)
+{
+ const char *alias = tp_contact_get_alias (contact);
+ const char *identifier = tp_contact_get_identifier (contact);
+
+ if (tp_strdiff (alias, identifier))
+ return g_strdup_printf ("%s (%s)", alias, identifier);
+ else
+ return g_strdup (alias);
+}
+
/*
* Block contact dialog
*/
@@ -174,8 +186,10 @@ empathy_block_individual_dialog_show (GtkWindow *parent,
GtkWidget *dialog;
GtkWidget *abusive_check = NULL;
GList *personas, *l;
- GString *str = g_string_new ("");
- guint npersonas = 0;
+ GString *text = g_string_new ("");
+ GString *blocked_str = g_string_new ("");
+ GString *notblocked_str = g_string_new ("");
+ guint npersonas_blocked = 0, npersonas_notblocked = 0;
gboolean can_report_abuse = FALSE;
int res;
@@ -192,6 +206,8 @@ empathy_block_individual_dialog_show (GtkWindow *parent,
TpfPersona *persona = l->data;
TpContact *contact;
EmpathyIndividualManagerFlags flags;
+ GString *s;
+ char *str;
if (!empathy_folks_persona_is_interesting (FOLKS_PERSONA (persona)))
continue;
@@ -200,22 +216,45 @@ empathy_block_individual_dialog_show (GtkWindow *parent,
flags = empathy_individual_manager_get_flags_for_connection (manager,
tp_contact_get_connection (contact));
- if (!(flags & EMPATHY_INDIVIDUAL_MANAGER_CAN_BLOCK))
- continue;
- else if (flags & EMPATHY_INDIVIDUAL_MANAGER_CAN_REPORT_ABUSIVE)
+ if (flags & EMPATHY_INDIVIDUAL_MANAGER_CAN_BLOCK)
+ {
+ s = blocked_str;
+ npersonas_blocked++;
+ }
+ else
+ {
+ s = notblocked_str;
+ npersonas_notblocked++;
+ }
+
+ if (flags & EMPATHY_INDIVIDUAL_MANAGER_CAN_REPORT_ABUSIVE)
can_report_abuse = TRUE;
- g_string_append_printf (str, "\n " BULLET_POINT " %s",
- tp_contact_get_identifier (contact));
- npersonas++;
+ str = contact_pretty_name (contact);
+ g_string_append_printf (s, "\n " BULLET_POINT " %s", str);
+ g_free (str);
}
+ g_string_append_printf (text,
+ _("Are you sure you want to block '%s' from contacting you again?"),
+ folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)));
+
+ if (npersonas_blocked > 0)
+ g_string_append_printf (text, "\n\n%s\n%s",
+ ngettext ("The following identity will be blocked:",
+ "The following identities will be blocked:",
+ npersonas_blocked),
+ blocked_str->str);
+
+ if (npersonas_notblocked > 0)
+ g_string_append_printf (text, "\n\n%s\n%s",
+ ngettext ("The following identity can not be blocked:",
+ "The following identities can not be blocked:",
+ npersonas_notblocked),
+ notblocked_str->str);
+
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
- "%s\n%s",
- ngettext ("Are you sure you want to block the following contact?",
- "Are you sure you want to block the following contacts?",
- npersonas),
- str->str);
+ "%s", text->str);
gtk_dialog_add_buttons (GTK_DIALOG (dialog),
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
@@ -230,14 +269,16 @@ empathy_block_individual_dialog_show (GtkWindow *parent,
abusive_check = gtk_check_button_new_with_mnemonic (
ngettext ("_Report this contact as abusive",
"_Report these contacts as abusive",
- npersonas));
+ npersonas_blocked));
gtk_box_pack_start (GTK_BOX (vbox), abusive_check, FALSE, TRUE, 0);
gtk_widget_show (abusive_check);
}
g_object_unref (manager);
- g_string_free (str, TRUE);
+ g_string_free (text, TRUE);
+ g_string_free (blocked_str, TRUE);
+ g_string_free (notblocked_str, TRUE);
res = gtk_dialog_run (GTK_DIALOG (dialog));