aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-account-gui.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index d0a57ac3d3..6c621ec464 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2004-10-08 JP Rosevear <jpr@novell.com>
+
+ * mail-account-gui.c (browse_clicked): use "Select a file" so as
+ not to break string freeze
+
2004-10-08 Harry Lu <harry.lu@sun.com>
* em-folder-tree.c: (em_folder_tree_class_init), (real_popup_menu),
diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c
index 6e5328ef87..3d1065acd6 100644
--- a/mail/mail-account-gui.c
+++ b/mail/mail-account-gui.c
@@ -1780,7 +1780,7 @@ browse_clicked (GnomeFileEntry *fentry, MailAccountGui *gui)
char *path;
if (GTK_IS_FILE_CHOOSER (fentry->fsw)) {
- check = gtk_check_button_new_with_label (_("Select individual file"));
+ check = gtk_check_button_new_with_label (_("Select a file"));
g_signal_connect (check, "toggled", G_CALLBACK (select_file_toggled), fentry->fsw);
gtk_widget_show (check);
gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (fentry->fsw), check);