diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-07 23:15:51 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:10 +0800 |
commit | 30fe010cffa6f290170147ea9a8b617d04fab39d (patch) | |
tree | 52d2222bc61384bc650c310cb8280f46084bd8e0 /mail/mail-ops.c | |
parent | 708ce51377b358304b19efd271c6b5005fea1866 (diff) | |
download | gsoc2013-evolution-30fe010cffa6f290170147ea9a8b617d04fab39d.tar gsoc2013-evolution-30fe010cffa6f290170147ea9a8b617d04fab39d.tar.gz gsoc2013-evolution-30fe010cffa6f290170147ea9a8b617d04fab39d.tar.bz2 gsoc2013-evolution-30fe010cffa6f290170147ea9a8b617d04fab39d.tar.lz gsoc2013-evolution-30fe010cffa6f290170147ea9a8b617d04fab39d.tar.xz gsoc2013-evolution-30fe010cffa6f290170147ea9a8b617d04fab39d.tar.zst gsoc2013-evolution-30fe010cffa6f290170147ea9a8b617d04fab39d.zip |
Adapt to CamelFolder:name -> display-name.
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 0526084016..e6bee3e534 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -1282,7 +1282,9 @@ struct _get_quota_msg { static gchar * get_quota_desc (struct _get_quota_msg *m) { - return g_strdup_printf (_("Retrieving quota information for folder '%s'"), camel_folder_get_name (m->folder)); + return g_strdup_printf ( + _("Retrieving quota information for folder '%s'"), + camel_folder_get_display_name (m->folder)); } static void |