diff options
author | Srinivasa Ragavan <sragavan@novell.com> | 2005-12-14 22:04:50 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2005-12-14 22:04:50 +0800 |
commit | 1065638cd6f013036d2344bdc4d0671202d5f56e (patch) | |
tree | 0d55d34c4cf8fb40d2ff4126a2a72841e85458da | |
parent | 9b1f964f440f01d0123eeb82abff990442c81578 (diff) | |
download | gsoc2013-evolution-1065638cd6f013036d2344bdc4d0671202d5f56e.tar.gz gsoc2013-evolution-1065638cd6f013036d2344bdc4d0671202d5f56e.tar.zst gsoc2013-evolution-1065638cd6f013036d2344bdc4d0671202d5f56e.zip |
Committed Johnny's patch.
2005-12-14 Srinivasa Ragavan <sragavan@novell.com>
* Committed Johnny's patch.
svn path=/trunk/; revision=30775
-rw-r--r-- | composer/ChangeLog | 6 | ||||
-rw-r--r-- | composer/e-msg-composer-select-file.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index b6b51b88f2..c615d34e76 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,9 @@ +2005-11-23 Johnny Jacob <johnnyjacob@gmail.com> + + ** See Bug # 246245 + * e-msg-composer-select-file.c (e_msg_composer_select_file_attachments): + Changed the title caption from "Attach file(s)" to "Insert Attachment". + 2005-12-07 Parthasarathi Susarla <sparthasarathi@novell.com> * e-msg-composer.[ch]: diff --git a/composer/e-msg-composer-select-file.c b/composer/e-msg-composer-select-file.c index a6b7c284b8..3774c8949e 100644 --- a/composer/e-msg-composer-select-file.c +++ b/composer/e-msg-composer-select-file.c @@ -236,7 +236,7 @@ void e_msg_composer_select_file_attachments(struct _EMsgComposer *composer, GtkW return; } - *w = get_selector (composer, _("Attach file(s)"), SELECTOR_MODE_MULTI|SELECTOR_SHOW_INLINE); + *w = get_selector (composer, _("Insert Attachment"), SELECTOR_MODE_MULTI|SELECTOR_SHOW_INLINE); g_signal_connect(*w, "response", G_CALLBACK(select_attach_response), composer); g_signal_connect(*w, "destroy", G_CALLBACK(gtk_widget_destroyed), w); g_object_set_data((GObject *)*w, "callback", func); |