diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-29 06:54:27 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-29 06:55:22 +0800 |
commit | fa2da5acd6f45520739f747062d04cdb866b2428 (patch) | |
tree | 4716aebb3c2a193cc3cd398d2878d0e60aa2ee1e /mail/importers | |
parent | 68581a10047876899dc97cb30777435e1f42a5a1 (diff) | |
download | gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.gz gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.zst gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.zip |
Fix mismatched quotes.
Diffstat (limited to 'mail/importers')
-rw-r--r-- | mail/importers/mail-importer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/importers/mail-importer.c b/mail/importers/mail-importer.c index ee1c958d12..f61ce2658b 100644 --- a/mail/importers/mail-importer.c +++ b/mail/importers/mail-importer.c @@ -152,7 +152,7 @@ import_mbox_exec (struct _import_mbox_msg *m) if (m->cancel) oldcancel = camel_operation_register(m->cancel); - camel_operation_start(NULL, _("Importing `%s'"), folder->full_name); + camel_operation_start(NULL, _("Importing '%s'"), folder->full_name); camel_folder_freeze(folder); while (camel_mime_parser_step(mp, NULL, NULL) == CAMEL_MIME_PARSER_STATE_FROM) { CamelMimeMessage *msg; |