aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@helixcode.com>2000-06-08 22:35:56 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2000-06-08 22:35:56 +0800
commit9886dd8e2d4a91bb0c7b53cde3aa6b3b44b09038 (patch)
treec03249f3506ad413bd2fbd1802fedf6af64558c1
parentc04ce4ea111fa38815975df46af6bea80e06241a (diff)
downloadgsoc2013-evolution-9886dd8e2d4a91bb0c7b53cde3aa6b3b44b09038.tar
gsoc2013-evolution-9886dd8e2d4a91bb0c7b53cde3aa6b3b44b09038.tar.gz
gsoc2013-evolution-9886dd8e2d4a91bb0c7b53cde3aa6b3b44b09038.tar.bz2
gsoc2013-evolution-9886dd8e2d4a91bb0c7b53cde3aa6b3b44b09038.tar.lz
gsoc2013-evolution-9886dd8e2d4a91bb0c7b53cde3aa6b3b44b09038.tar.xz
gsoc2013-evolution-9886dd8e2d4a91bb0c7b53cde3aa6b3b44b09038.tar.zst
gsoc2013-evolution-9886dd8e2d4a91bb0c7b53cde3aa6b3b44b09038.zip
Added missing tooltips. We still need icons, though.
2000-06-07 Federico Mena Quintero <federico@helixcode.com> * gui/event-editor.c (toolbar): Added missing tooltips. We still need icons, though. svn path=/trunk/; revision=3477
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/event-editor.c26
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
};