aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--composer/ChangeLog6
-rw-r--r--composer/e-msg-composer-select-file.c2
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);