aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/em-folder-tree.c')
-rw-r--r--mail/em-folder-tree.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c
index ccf4d9c001..4375b9bcc0 100644
--- a/mail/em-folder-tree.c
+++ b/mail/em-folder-tree.c
@@ -1999,6 +1999,14 @@ struct _EMCopyFolders {
int delete;
};
+static char *
+emft_copy_folders__desc (struct _mail_msg *mm, int complete)
+{
+ struct _EMCopyFolders *m = (struct _EMCopyFolders *) mm;
+
+ return g_strdup_printf (_("Copying `%s' to `%s'"), m->frombase, m->tobase);
+}
+
static void
emft_copy_folders__copy (struct _mail_msg *mm)
{
@@ -2136,7 +2144,7 @@ emft_copy_folders__free (struct _mail_msg *mm)
}
static struct _mail_msg_op copy_folders_op = {
- NULL,
+ emft_copy_folders__desc,
emft_copy_folders__copy,
NULL,
emft_copy_folders__free,