diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/event-editor.c | 26 |
2 files changed, 22 insertions, 9 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index a99369168f..e2d22ca657 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2000-06-07 Federico Mena Quintero <federico@helixcode.com> + + * gui/event-editor.c (toolbar): Added missing tooltips. We still + need icons, though. + 2000-06-07 Seth Alves <alves@hungry.com> * cal-util/calobj.c (ical_object_find_in_string): put this back in, diff --git a/calendar/gui/event-editor.c b/calendar/gui/event-editor.c index 5d89517750..e3ae2e5307 100644 --- a/calendar/gui/event-editor.c +++ b/calendar/gui/event-editor.c @@ -1315,22 +1315,30 @@ tb_save_and_close_cb (GtkWidget *widget, gpointer data) static GnomeUIInfo toolbar[] = { GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Save and Close"), - N_("Saves the appointment and closes the dialog box"), + N_("Save the appointment and close the dialog box"), tb_save_and_close_cb, GNOME_STOCK_PIXMAP_SAVE), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Print..."), NULL, NULL), - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Insert File..."), NULL, NULL), + GNOMEUIINFO_ITEM_NONE (N_("FIXME: Print..."), + N_("Print this item"), NULL), + GNOMEUIINFO_ITEM_NONE (N_("FIXME: Insert File..."), + N_("Insert a file as an attachment"), NULL), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Recurrence..."), NULL, NULL), + GNOMEUIINFO_ITEM_NONE (N_("FIXME: Recurrence..."), + N_("Configure recurrence rules"), NULL), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Invite Attendees..."), NULL, NULL), + GNOMEUIINFO_ITEM_NONE (N_("FIXME: Invite Attendees..."), + N_("Invite attendees to a meeting"), NULL), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Delete"), NULL, NULL), + GNOMEUIINFO_ITEM_NONE (N_("FIXME: Delete"), + N_("Delete this item"), NULL), GNOMEUIINFO_SEPARATOR, - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Previous"), NULL, NULL), - GNOMEUIINFO_ITEM_NONE (N_("FIXME: Next"), NULL, NULL), - GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Help"), NULL, NULL, GNOME_STOCK_PIXMAP_HELP), + GNOMEUIINFO_ITEM_NONE (N_("FIXME: Previous"), + N_("Go to the previous item"), NULL), + GNOMEUIINFO_ITEM_NONE (N_("FIXME: Next"), + N_("Go to the next item"), NULL), + GNOMEUIINFO_ITEM_STOCK (N_("FIXME: Help"), + N_("See online help"), NULL, GNOME_STOCK_PIXMAP_HELP), GNOMEUIINFO_END }; |