aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2004-10-08 23:56:18 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-10-08 23:56:18 +0800
commit7d13abd6087e59cec312ad223b43570f872ed473 (patch)
tree4f0117f4d04f495f0428f6315c81c4fabd71a6cd /mail
parent6da4058665d0d49eb2c8be7b3a0a62ca9f8f8e7a (diff)
downloadgsoc2013-evolution-7d13abd6087e59cec312ad223b43570f872ed473.tar
gsoc2013-evolution-7d13abd6087e59cec312ad223b43570f872ed473.tar.gz
gsoc2013-evolution-7d13abd6087e59cec312ad223b43570f872ed473.tar.bz2
gsoc2013-evolution-7d13abd6087e59cec312ad223b43570f872ed473.tar.lz
gsoc2013-evolution-7d13abd6087e59cec312ad223b43570f872ed473.tar.xz
gsoc2013-evolution-7d13abd6087e59cec312ad223b43570f872ed473.tar.zst
gsoc2013-evolution-7d13abd6087e59cec312ad223b43570f872ed473.zip
use "Select a file"
2004-10-08 JP Rosevear <jpr@novell.com> * mail-account-gui.c (browse_clicked): use "Select a file" svn path=/trunk/; revision=27511
Diffstat (limited to 'mail')
-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);