diff options
author | Milan Crha <mcrha@redhat.com> | 2011-07-27 04:30:10 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-14 20:08:38 +0800 |
commit | 2b0957f935996335cb5a7abe8008499f98ddd7d2 (patch) | |
tree | 59eab20ddc11a048816ea7ab30e02a91a436d1d4 /calendar/gui | |
parent | 1d25dd38e2bf54660575f4a2007bf58197147c85 (diff) | |
download | gsoc2013-evolution-2b0957f935996335cb5a7abe8008499f98ddd7d2.tar.gz gsoc2013-evolution-2b0957f935996335cb5a7abe8008499f98ddd7d2.tar.zst gsoc2013-evolution-2b0957f935996335cb5a7abe8008499f98ddd7d2.zip |
Bug #655255 - Make comp-editor toolbar buttons' tooltips saner
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 8 | ||||
-rw-r--r-- | calendar/gui/dialogs/event-editor.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 88b8b4a89f..c51634903e 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -1068,7 +1068,7 @@ static GtkActionEntry core_entries[] = { GTK_STOCK_CLOSE, NULL, NULL, - N_("Click here to close the current window"), + N_("Close the current window"), G_CALLBACK (action_close_cb) }, { "copy-clipboard", @@ -1096,7 +1096,7 @@ static GtkActionEntry core_entries[] = { GTK_STOCK_HELP, NULL, NULL, - N_("Click here to view help available"), + N_("View help"), G_CALLBACK (action_help_cb) }, { "paste-clipboard", @@ -1124,7 +1124,7 @@ static GtkActionEntry core_entries[] = { GTK_STOCK_SAVE, NULL, NULL, - N_("Click here to save the current window"), + N_("Save current changes"), G_CALLBACK (action_save_cb) }, { "select-all", @@ -1192,7 +1192,7 @@ static GtkActionEntry individual_entries[] = { "mail-attachment", N_("_Attachment..."), "<Control>m", - N_("Click here to attach a file"), + N_("Attach a file"), G_CALLBACK (action_attach_cb) } }; diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c index f4c798bfd1..4c3169854b 100644 --- a/calendar/gui/dialogs/event-editor.c +++ b/calendar/gui/dialogs/event-editor.c @@ -211,7 +211,7 @@ static GtkActionEntry editable_entries[] = { "appointment-soon", N_("_Alarms"), NULL, - N_("Click here to set or unset alarms for this event"), + N_("Set or unset alarms for this event"), G_CALLBACK (action_alarms_cb) }, }; |