aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-03-29 06:54:27 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-03-29 06:55:22 +0800
commitfa2da5acd6f45520739f747062d04cdb866b2428 (patch)
tree4716aebb3c2a193cc3cd398d2878d0e60aa2ee1e /plugins
parent68581a10047876899dc97cb30777435e1f42a5a1 (diff)
downloadgsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.gz
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.bz2
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.lz
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.xz
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.zst
gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.zip
Fix mismatched quotes.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/groupwise-features/share-folder-common.c2
-rw-r--r--plugins/profiler/profiler.c2
-rw-r--r--plugins/pst-import/pst-importer.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/groupwise-features/share-folder-common.c b/plugins/groupwise-features/share-folder-common.c
index 14e3b0e5bd..992664f863 100644
--- a/plugins/groupwise-features/share-folder-common.c
+++ b/plugins/groupwise-features/share-folder-common.c
@@ -138,7 +138,7 @@ struct _EMCreateFolder {
static gchar *
create_folder_desc (struct _EMCreateFolder *m)
{
- return g_strdup_printf (_("Creating folder `%s'"), m->full_name);
+ return g_strdup_printf (_("Creating folder '%s'"), m->full_name);
}
static void
diff --git a/plugins/profiler/profiler.c b/plugins/profiler/profiler.c
index b57ba83817..e3ecd07a9e 100644
--- a/plugins/profiler/profiler.c
+++ b/plugins/profiler/profiler.c
@@ -45,7 +45,7 @@ org_gnome_evolution_profiler_event(EPlugin *ep, EProfileEventTarget *t)
name = g_strdup_printf("eprofile.%ld", (glong) getpid());
fp = fopen(name, "w");
if (fp)
- fprintf(stderr, "Generating profiling data in `%s'\n", name);
+ fprintf(stderr, "Generating profiling data in '%s'\n", name);
g_free(name);
}
diff --git a/plugins/pst-import/pst-importer.c b/plugins/pst-import/pst-importer.c
index 7d2868042a..fa0b61e993 100644
--- a/plugins/pst-import/pst-importer.c
+++ b/plugins/pst-import/pst-importer.c
@@ -453,7 +453,7 @@ pst_import_file (PstImporter *m)
filename = g_filename_from_uri (((EImportTargetURI *)m->target)->uri_src, NULL, NULL);
m->parent_uri = g_strdup (((EImportTargetURI *)m->target)->uri_dest); /* Destination folder, was set in our widget */
- camel_operation_start (NULL, _("Importing `%s'"), filename);
+ camel_operation_start (NULL, _("Importing '%s'"), filename);
if (GPOINTER_TO_INT (g_datalist_get_data (&m->target->data, "pst-do-mail"))) {
mail_tool_uri_to_folder (m->parent_uri, CAMEL_STORE_FOLDER_CREATE, &m->base.ex);
@@ -559,7 +559,7 @@ pst_process_item (PstImporter *m, pst_desc_tree *d_ptr)
if (item->folder != NULL) {
pst_process_folder (m, item);
- camel_operation_start (NULL, _("Importing `%s'"), item->file_as.str);
+ camel_operation_start (NULL, _("Importing '%s'"), item->file_as.str);
} else {
if (m->folder_count && (m->current_item < m->folder_count)) {
camel_operation_progress (NULL, (m->current_item * 100) / m->folder_count);