From 31f6fe3aafb5e4a41980216543d9f5db707a053f Mon Sep 17 00:00:00 2001 From: Radek Doulik Date: Fri, 7 Jun 2002 19:54:47 +0000 Subject: fix some typos, set label usize to 500, -2 (menu_help): added help link to 2002-06-07 Radek Doulik * mail-signature-editor.c (mail_signature_editor): fix some typos, set label usize to 500, -2 (menu_help): added help link to Help menu svn path=/trunk/; revision=17148 --- mail/ChangeLog | 6 ++++++ mail/mail-signature-editor.c | 16 ++++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index 449f891711..d12fe6e337 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2002-06-07 Radek Doulik + + * mail-signature-editor.c (mail_signature_editor): fix some typos, + set label usize to 500, -2 + (menu_help): added help link to Help menu + 2002-06-06 Jeffrey Stedfast * mail-account-gui.c (mail_account_gui_save): If this account is diff --git a/mail/mail-signature-editor.c b/mail/mail-signature-editor.c index d0a21630d2..1e83b678a8 100644 --- a/mail/mail-signature-editor.c +++ b/mail/mail-signature-editor.c @@ -219,11 +219,22 @@ menu_file_save_close_cb (BonoboUIComponent *uic, gpointer data, const gchar *pat destroy_editor (editor); } +static void +menu_help (BonoboUIComponent *uih, void *data, const char *path) +{ + GnomeHelpMenuEntry he; + + he.name = PACKAGE; + he.path = "usage-mail-getnsend-send.html#HTML-SIGNATURE-HOWTO"; + gnome_help_display (NULL, &he); +} + static BonoboUIVerb verbs [] = { BONOBO_UI_VERB ("FileSave", menu_file_save_cb), BONOBO_UI_VERB ("FileClose", menu_file_close_cb), BONOBO_UI_VERB ("FileSaveClose", menu_file_save_close_cb), + BONOBO_UI_VERB ("HelpSigEditor", menu_help), BONOBO_UI_VERB_END }; @@ -393,15 +404,16 @@ mail_signature_editor (MailConfigSignature *sig) gtk_box_pack_start (GTK_BOX (hbox), pixmap, FALSE, TRUE, 0); vbox1 = gtk_vbox_new (FALSE, 3); - label = gtk_label_new (_("If you would like to use old signature, " + label = gtk_label_new (_("If you would like to use an old signature, " "you may import it by opening the \"Insert\" " "menu, and select either the \"Text file\" " "or the \"HTML file\" item.")); + gtk_widget_set_usize (label, 500, -2); gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); gtk_misc_set_alignment (GTK_MISC (label), 0, 0); gtk_box_pack_start (GTK_BOX (vbox1), label, FALSE, TRUE, 0); gtk_box_pack_start_defaults (GTK_BOX (hbox), vbox1); - check = gtk_check_button_new_with_label (_("Hide signature hints")); + check = gtk_check_button_new_with_label (_("Hide signature hint")); gtk_signal_connect (GTK_OBJECT (check), "toggled", check_hide_info_toggled, editor); gtk_box_pack_end (GTK_BOX (vbox1), check, FALSE, TRUE, 3); -- cgit v1.2.3