aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-linking-dialog.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-27 19:22:35 +0800
committerPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-27 19:36:03 +0800
commited67c7eca44a3d9891197aa02a14410e66227a1d (patch)
tree8814cda53483856a7e9fe5c5170469d33f914279 /libempathy-gtk/empathy-linking-dialog.c
parent7b31c4e8aec4e800fef27bbe25b90a26186f2b20 (diff)
downloadgsoc2013-empathy-ed67c7eca44a3d9891197aa02a14410e66227a1d.tar
gsoc2013-empathy-ed67c7eca44a3d9891197aa02a14410e66227a1d.tar.gz
gsoc2013-empathy-ed67c7eca44a3d9891197aa02a14410e66227a1d.tar.bz2
gsoc2013-empathy-ed67c7eca44a3d9891197aa02a14410e66227a1d.tar.lz
gsoc2013-empathy-ed67c7eca44a3d9891197aa02a14410e66227a1d.tar.xz
gsoc2013-empathy-ed67c7eca44a3d9891197aa02a14410e66227a1d.tar.zst
gsoc2013-empathy-ed67c7eca44a3d9891197aa02a14410e66227a1d.zip
Bug 628062 — Add translator comments
Diffstat (limited to 'libempathy-gtk/empathy-linking-dialog.c')
-rw-r--r--libempathy-gtk/empathy-linking-dialog.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-linking-dialog.c b/libempathy-gtk/empathy-linking-dialog.c
index 52e0492c0..d323e84f4 100644
--- a/libempathy-gtk/empathy-linking-dialog.c
+++ b/libempathy-gtk/empathy-linking-dialog.c
@@ -89,6 +89,9 @@ empathy_linking_dialog_init (EmpathyLinkingDialog *self)
/* Set up dialog */
gtk_dialog_set_has_separator (dialog, FALSE);
gtk_window_set_resizable (GTK_WINDOW (self), TRUE);
+ /* Translators: this is the title of the linking dialogue (reached by
+ * right-clicking on a contact and selecting "Link…"). "Link" in this title
+ * is a verb. */
gtk_window_set_title (GTK_WINDOW (self), _("Link Contacts"));
gtk_widget_set_size_request (GTK_WIDGET (self), 600, 500);
@@ -99,6 +102,9 @@ empathy_linking_dialog_init (EmpathyLinkingDialog *self)
gtk_widget_show (button);
/* Add button */
+ /* Translators: this is an action button in the linking dialogue. "Link" is
+ * used here as a verb meaning "to connect two contacts to form a
+ * meta-contact". */
button = gtk_button_new_with_mnemonic (_("_Link"));
gtk_dialog_add_action_widget (dialog, button, GTK_RESPONSE_OK);
gtk_widget_show (button);