aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-05-20 02:25:44 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-05-20 02:25:44 +0800
commit9d472864a27ccb3f284e2439af7cbd49a6176d04 (patch)
treeea4c5867978b0747d51741ee377a6f824add0f63
parentf5e9fbef10d6b03ac156a27cfd9ac54451632dec (diff)
downloadgsoc2013-evolution-9d472864a27ccb3f284e2439af7cbd49a6176d04.tar
gsoc2013-evolution-9d472864a27ccb3f284e2439af7cbd49a6176d04.tar.gz
gsoc2013-evolution-9d472864a27ccb3f284e2439af7cbd49a6176d04.tar.bz2
gsoc2013-evolution-9d472864a27ccb3f284e2439af7cbd49a6176d04.tar.lz
gsoc2013-evolution-9d472864a27ccb3f284e2439af7cbd49a6176d04.tar.xz
gsoc2013-evolution-9d472864a27ccb3f284e2439af7cbd49a6176d04.tar.zst
gsoc2013-evolution-9d472864a27ccb3f284e2439af7cbd49a6176d04.zip
Use a bit more direct English when informing the user of no messages in
2008-05-19 Matthew Barnes <mbarnes@redhat.com> * mail/message-list.c (regen_list_done): Use a bit more direct English when informing the user of no messages in the currently selected folder. svn path=/trunk/; revision=35515
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/message-list.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 64239de48c..e6c7f09b83 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,11 @@
2008-05-19 Matthew Barnes <mbarnes@redhat.com>
+ * message-list.c (regen_list_done):
+ Use a bit more direct English when informing the user of no messages
+ in the currently selected folder.
+
+2008-05-19 Matthew Barnes <mbarnes@redhat.com>
+
** Fixes bug #533465, patch from Ritesh Khadgaray
* em-account-editor.c (emae_url_set_hostport):
diff --git a/mail/message-list.c b/mail/message-list.c
index 677e0db6e7..76586d6606 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -4100,7 +4100,7 @@ regen_list_done (struct _regen_list_msg *m)
if (m->ml->search && strcmp (m->ml->search, " ") != 0)
e_tree_set_info_message (m->ml->tree, _("No message satisfies your search criteria. Either clear search with Search->Clear menu item or change it."));
else
- e_tree_set_info_message (m->ml->tree, _("There is currently no message in this folder."));
+ e_tree_set_info_message (m->ml->tree, _("There are no messages in this folder."));
} else
e_tree_set_info_message (m->ml->tree, NULL);