diff options
author | Sankar P <psankar@novell.com> | 2006-10-16 22:25:28 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-10-16 22:25:28 +0800 |
commit | b0eb9fa0969f9b5b20d268b85550881a962aeb32 (patch) | |
tree | 2f95a6f734f2cc4974ac6bd90cb80c0a38ba1e2c /mail | |
parent | 28e70f42d833ed32cae1f1f8210b9f0bb79167d2 (diff) | |
download | gsoc2013-evolution-b0eb9fa0969f9b5b20d268b85550881a962aeb32.tar.gz gsoc2013-evolution-b0eb9fa0969f9b5b20d268b85550881a962aeb32.tar.zst gsoc2013-evolution-b0eb9fa0969f9b5b20d268b85550881a962aeb32.zip |
Changes the string displayed in the status bar. Fixes #320615
2005-10-16 Sankar P <psankar@novell.com>
* mail-ops.c: (em_filter_folder_element_describe)
Changes the string displayed in the status bar.
Fixes #320615
svn path=/trunk/; revision=32894
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-ops.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 8c48c589d9..a9679f6c0b 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2005-10-16 Sankar P <psankar@novell.com> + + * mail-ops.c: (em_filter_folder_element_describe) + Changes the string displayed in the status bar. + Fixes #320615 + 2006-10-16 Ushveen Kaur <kushveen@novell.com> ** Fixes bug #308276 diff --git a/mail/mail-ops.c b/mail/mail-ops.c index c835c45f79..1c3411d645 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -102,7 +102,7 @@ struct _fetch_mail_msg { static char * em_filter_folder_element_describe (struct _mail_msg *mm, int complete) { - return g_strdup (_("Filtering Folder")); + return g_strdup (_("Filtering Selected Messages")); } /* filter a folder, or a subset thereof, uses source_folder/source_uids */ |