diff options
-rw-r--r-- | composer/ChangeLog | 7 | ||||
-rw-r--r-- | composer/e-composer-actions.c | 8 |
2 files changed, 12 insertions, 3 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 55ac3df4a6..28e93ecd25 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,10 @@ +2008-12-18 Matthew Barnes <mbarnes@redhat.com> + + * e-composer-actions.c: + Change "Save Draft" menu item to "Save as Draft" to be consistent + with "Save as Template". I like that better. But leave the toolbar + button alone. + 2008-12-16 Milan Crha <mcrha@redhat.com> ** Fix for bug #564248 diff --git a/composer/e-composer-actions.c b/composer/e-composer-actions.c index 433a17ab66..61ad1e9a90 100644 --- a/composer/e-composer-actions.c +++ b/composer/e-composer-actions.c @@ -508,7 +508,7 @@ static GtkActionEntry entries[] = { { "save-draft", GTK_STOCK_SAVE, - N_("Save _Draft"), + N_("Save as _Draft"), "<Shift><Control>s", N_("Save as draft"), G_CALLBACK (action_save_draft_cb) }, @@ -693,8 +693,10 @@ e_composer_actions_init (EMsgComposer *composer) /* Fine Tuning */ g_object_set ( - G_OBJECT (ACTION (ATTACH)), - "short-label", _("Attach"), NULL); + ACTION (ATTACH), "short-label", _("Attach"), NULL); + + g_object_set ( + ACTION (SAVE_DRAFT), "short-label", _("Save Draft"), NULL); #if defined (HAVE_NSS) visible = TRUE; |