diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-25 20:16:38 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-01-25 22:13:41 +0800 |
commit | b5b352cfbea1dd9ae47dbea05a37ab5fc523e9b6 (patch) | |
tree | 1f98a96abf3568e15b67eadee7217df66be8f114 | |
parent | 1b15b1d3623dd0f2fc584e50d8ae981aea50c9be (diff) | |
download | gsoc2013-empathy-b5b352cfbea1dd9ae47dbea05a37ab5fc523e9b6.tar gsoc2013-empathy-b5b352cfbea1dd9ae47dbea05a37ab5fc523e9b6.tar.gz gsoc2013-empathy-b5b352cfbea1dd9ae47dbea05a37ab5fc523e9b6.tar.bz2 gsoc2013-empathy-b5b352cfbea1dd9ae47dbea05a37ab5fc523e9b6.tar.lz gsoc2013-empathy-b5b352cfbea1dd9ae47dbea05a37ab5fc523e9b6.tar.xz gsoc2013-empathy-b5b352cfbea1dd9ae47dbea05a37ab5fc523e9b6.tar.zst gsoc2013-empathy-b5b352cfbea1dd9ae47dbea05a37ab5fc523e9b6.zip |
add a hint about how to reach the accounts dialog
-rw-r--r-- | src/empathy-account-assistant.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/empathy-account-assistant.c b/src/empathy-account-assistant.c index 37b7ec6dd..e5ec9f6f6 100644 --- a/src/empathy-account-assistant.c +++ b/src/empathy-account-assistant.c @@ -1058,13 +1058,15 @@ account_assistant_build_salut_page (EmpathyAccountAssistant *self) gtk_box_pack_start (GTK_BOX (main_vbox), hbox_1, TRUE, TRUE, 0); gtk_widget_show (hbox_1); - w = gtk_label_new ( + w = gtk_label_new (""); + gtk_label_set_markup (GTK_LABEL (w), _("Empathy can automatically discover and chat with the people " "connected on the same network as you. " "If you want to use this feature, please check that the " "details below are correct. " "You can easily change these details later or disable this feature " - "by using the 'Accounts' dialog.")); + "by using the 'Accounts' dialog " + "(<span style=\"italic\">Edit->Accounts</span>).")); gtk_misc_set_alignment (GTK_MISC (w), 0, 0.5); gtk_label_set_line_wrap (GTK_LABEL (w), TRUE); gtk_box_pack_start (GTK_BOX (hbox_1), w, FALSE, FALSE, 0); |