diff options
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shell-view-menu.c | 11 | ||||
-rw-r--r-- | ui/ChangeLog | 4 | ||||
-rw-r--r-- | ui/evolution.xml | 5 |
4 files changed, 19 insertions, 5 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 513d09e083..e5d64bcf27 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2001-05-15 Ettore Perazzoli <ettore@ximian.com> + + * e-shell-view-menu.c: Add an `HelpFAQ' verb. + 2001-05-14 jacob berkman <jacob@ximian.com> * e-folder-tree.c (remove_folder): set the subfolder's parent to diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index f30b83fdd4..7d4ab56407 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -505,11 +505,12 @@ BonoboUIVerb file_verbs [] = { }; BonoboUIVerb help_verbs [] = { - BONOBO_UI_VERB_DATA ("HelpIndex", command_help, "index.html"), - BONOBO_UI_VERB_DATA ("HelpGetStarted", command_help, "usage-mainwindow.html"), - BONOBO_UI_VERB_DATA ("HelpUsingMail", command_help, "usage-mail.html"), - BONOBO_UI_VERB_DATA ("HelpUsingCalendar", command_help, "usage-calendar.html"), - BONOBO_UI_VERB_DATA ("HelpUsingContact", command_help, "usage-contact.html"), + BONOBO_UI_VERB_DATA ("HelpIndex", command_help, "evolution-guide/index.html"), + BONOBO_UI_VERB_DATA ("HelpGetStarted", command_help, "evolution-guide/usage-mainwindow.html"), + BONOBO_UI_VERB_DATA ("HelpUsingMail", command_help, "evolution-guide/usage-mail.html"), + BONOBO_UI_VERB_DATA ("HelpUsingCalendar", command_help, "evolution-guide/usage-calendar.html"), + BONOBO_UI_VERB_DATA ("HelpUsingContact", command_help, "evolution-guide/usage-contact.html"), + BONOBO_UI_VERB_DATA ("HelpFAQ", command_help, "evolution-faq/index.html"), BONOBO_UI_VERB_END }; diff --git a/ui/ChangeLog b/ui/ChangeLog index 72e9e3e597..54ea489032 100644 --- a/ui/ChangeLog +++ b/ui/ChangeLog @@ -1,3 +1,7 @@ +2001-05-15 Ettore Perazzoli <ettore@ximian.com> + + * evolution.xml: Add an "Evolution FAQ" entry to the "Help" menu. + 2001-05-15 Dan Winship <danw@ximian.com> * evolution-mail.xml: Create a "Message Display" submenu in View, diff --git a/ui/evolution.xml b/ui/evolution.xml index 60780c8553..b44786a1c4 100644 --- a/ui/evolution.xml +++ b/ui/evolution.xml @@ -152,6 +152,11 @@ <separator/> + <menuitem name="HelpFAQ" verb="" + _label="Evolution _FAQ"/> + + <separator/> + <menuitem name="HelpSubmitBug" verb="" _label="Submit _Bug Report"/> |