aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Loper <mloper@src.gnome.org>2000-05-08 04:49:15 +0800
committerMatthew Loper <mloper@src.gnome.org>2000-05-08 04:49:15 +0800
commit994667f2fe90e00983675f1559fb341ab6d3cf87 (patch)
tree22794d0b897fa15985eae797345fe900fc4a5f83
parent56f9196ac4e30fd0f5e0bd79bab0dcfc9856c8ff (diff)
downloadgsoc2013-evolution-994667f2fe90e00983675f1559fb341ab6d3cf87.tar
gsoc2013-evolution-994667f2fe90e00983675f1559fb341ab6d3cf87.tar.gz
gsoc2013-evolution-994667f2fe90e00983675f1559fb341ab6d3cf87.tar.bz2
gsoc2013-evolution-994667f2fe90e00983675f1559fb341ab6d3cf87.tar.lz
gsoc2013-evolution-994667f2fe90e00983675f1559fb341ab6d3cf87.tar.xz
gsoc2013-evolution-994667f2fe90e00983675f1559fb341ab6d3cf87.tar.zst
gsoc2013-evolution-994667f2fe90e00983675f1559fb341ab6d3cf87.zip
Changed a toolbar button from saying "New mail" (which suggests you might
* folder-browser-factory.c: Changed a toolbar button from saying "New mail" (which suggests you might be composing new mail) to "Get mail". svn path=/trunk/; revision=2880
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/folder-browser-factory.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 9355968765..0aa6639bb9 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2000-05-07 Matt Loper <matt@helixcode.com>
+
+ * folder-browser-factory.c: Changed a toolbar button from saying
+ "New mail" (which suggests you might be composing new mail) to
+ "Get mail".
+
2000-05-06 Dan Winship <danw@helixcode.com>
* folder-browser-factory.c (folder_browser_factory): Don't
diff --git a/mail/folder-browser-factory.c b/mail/folder-browser-factory.c
index 31d270e708..e21240a5f8 100644
--- a/mail/folder-browser-factory.c
+++ b/mail/folder-browser-factory.c
@@ -109,7 +109,7 @@ random_cb (GtkWidget *button, gpointer user_data)
}
static GnomeUIInfo gnome_toolbar [] = {
- GNOMEUIINFO_ITEM_STOCK (N_("New mail"), N_("Check for new mail"), fetch_mail, GNOME_STOCK_PIXMAP_MAIL_RCV),
+ GNOMEUIINFO_ITEM_STOCK (N_("Get mail"), N_("Check for new mail"), fetch_mail, GNOME_STOCK_PIXMAP_MAIL_RCV),
GNOMEUIINFO_ITEM_STOCK (N_("Send"), N_("Send a new message"), send_msg, GNOME_STOCK_PIXMAP_MAIL_SND),
GNOMEUIINFO_ITEM_STOCK (N_("Find"), N_("Find messages"), random_cb, GNOME_STOCK_PIXMAP_SEARCH),