aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-linking-dialog.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2010-12-12 19:25:26 +0800
committerPhilip Withnall <philip.withnall@collabora.co.uk>2010-12-13 20:22:53 +0800
commit315675364ae3c5afb3bda08a7389d655112ad7a5 (patch)
tree90f96362ceefc99795c1cd337ba5cb83845bd9dc /libempathy-gtk/empathy-linking-dialog.c
parenta2f8a7b9198d90f6a2e8e38c403e29c25b0b560c (diff)
downloadgsoc2013-empathy-315675364ae3c5afb3bda08a7389d655112ad7a5.tar
gsoc2013-empathy-315675364ae3c5afb3bda08a7389d655112ad7a5.tar.gz
gsoc2013-empathy-315675364ae3c5afb3bda08a7389d655112ad7a5.tar.bz2
gsoc2013-empathy-315675364ae3c5afb3bda08a7389d655112ad7a5.tar.lz
gsoc2013-empathy-315675364ae3c5afb3bda08a7389d655112ad7a5.tar.xz
gsoc2013-empathy-315675364ae3c5afb3bda08a7389d655112ad7a5.tar.zst
gsoc2013-empathy-315675364ae3c5afb3bda08a7389d655112ad7a5.zip
Bug 631096 — Should not mention "meta contacts" in UI
Change all occurrences of “meta-contacts” in translatable strings to use the phrase “linked contacts” instead. Closes: bgo#631096
Diffstat (limited to 'libempathy-gtk/empathy-linking-dialog.c')
-rw-r--r--libempathy-gtk/empathy-linking-dialog.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-linking-dialog.c b/libempathy-gtk/empathy-linking-dialog.c
index 323ec4e03..e6d408fb4 100644
--- a/libempathy-gtk/empathy-linking-dialog.c
+++ b/libempathy-gtk/empathy-linking-dialog.c
@@ -119,7 +119,7 @@ empathy_linking_dialog_init (EmpathyLinkingDialog *self)
button = gtk_button_new_with_mnemonic (
C_("Unlink individual (button)", "_Unlink…"));
gtk_widget_set_tooltip_text (button, _("Completely split the displayed "
- "meta-contact into the contacts it contains."));
+ "linked contacts into the separate contacts."));
gtk_dialog_add_action_widget (dialog, button, RESPONSE_UNLINK);
gtk_widget_show (button);
@@ -179,12 +179,12 @@ linking_response_cb (EmpathyLinkingDialog *self,
/* Show a confirmation dialogue first */
dialog = gtk_message_dialog_new (GTK_WINDOW (self), GTK_DIALOG_MODAL,
- GTK_MESSAGE_WARNING, GTK_BUTTONS_NONE, _("Unlink meta-contact '%s'?"),
+ GTK_MESSAGE_WARNING, GTK_BUTTONS_NONE,
+ _("Unlink linked contacts '%s'?"),
folks_aliasable_get_alias (FOLKS_ALIASABLE (individual)));
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
- _("Are you sure you want to unlink this meta-contact? This will "
- "completely split the meta-contact into the contacts it "
- "contains."));
+ _("Are you sure you want to unlink these linked contacts? This will "
+ "completely split the linked contacts into separate contacts."));
gtk_dialog_add_buttons (GTK_DIALOG (dialog),
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
C_("Unlink individual (button)", "_Unlink"), GTK_RESPONSE_OK,