From fa2da5acd6f45520739f747062d04cdb866b2428 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 28 Mar 2010 18:54:27 -0400 Subject: Fix mismatched quotes. --- modules/calendar/e-cal-shell-backend.c | 2 +- modules/calendar/e-cal-shell-migrate.c | 2 +- modules/calendar/e-memo-shell-backend.c | 2 +- modules/calendar/e-task-shell-backend.c | 2 +- modules/calendar/e-task-shell-migrate.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'modules/calendar') diff --git a/modules/calendar/e-cal-shell-backend.c b/modules/calendar/e-cal-shell-backend.c index 30bad0a4bf..5560d018cc 100644 --- a/modules/calendar/e-cal-shell-backend.c +++ b/modules/calendar/e-cal-shell-backend.c @@ -593,7 +593,7 @@ cal_shell_backend_handle_uri_cb (EShellBackend *shell_backend, source = e_source_list_peek_source_by_uid (source_list, source_uid); if (source == NULL) { - g_printerr ("No source for UID `%s'\n", source_uid); + g_printerr ("No source for UID '%s'\n", source_uid); g_object_unref (source_list); goto exit; } diff --git a/modules/calendar/e-cal-shell-migrate.c b/modules/calendar/e-cal-shell-migrate.c index ea0e6aa751..0e5dee9363 100644 --- a/modules/calendar/e-cal-shell-migrate.c +++ b/modules/calendar/e-cal-shell-migrate.c @@ -690,7 +690,7 @@ e_cal_shell_backend_migrate (EShellBackend *shell_backend, if (!migrate_ical_folder (l->data, on_this_computer, source_name, E_CAL_SOURCE_TYPE_EVENT)) { /* FIXME: domain/code */ - g_set_error(error, 0, 0, _("Unable to migrate calendar `%s'"), source_name); + g_set_error(error, 0, 0, _("Unable to migrate calendar '%s'"), source_name); g_free(source_name); goto fail; } diff --git a/modules/calendar/e-memo-shell-backend.c b/modules/calendar/e-memo-shell-backend.c index d86289d148..28065ba4a9 100644 --- a/modules/calendar/e-memo-shell-backend.c +++ b/modules/calendar/e-memo-shell-backend.c @@ -419,7 +419,7 @@ memo_shell_backend_handle_uri_cb (EShellBackend *shell_backend, source = e_source_list_peek_source_by_uid (source_list, source_uid); if (source == NULL) { - g_printerr ("No source for UID `%s'\n", source_uid); + g_printerr ("No source for UID '%s'\n", source_uid); g_object_unref (source_list); goto exit; } diff --git a/modules/calendar/e-task-shell-backend.c b/modules/calendar/e-task-shell-backend.c index 1db691497c..4307ef945f 100644 --- a/modules/calendar/e-task-shell-backend.c +++ b/modules/calendar/e-task-shell-backend.c @@ -424,7 +424,7 @@ task_shell_backend_handle_uri_cb (EShellBackend *shell_backend, source = e_source_list_peek_source_by_uid (source_list, source_uid); if (source == NULL) { - g_printerr ("No source for UID `%s'\n", source_uid); + g_printerr ("No source for UID '%s'\n", source_uid); g_object_unref (source_list); goto exit; } diff --git a/modules/calendar/e-task-shell-migrate.c b/modules/calendar/e-task-shell-migrate.c index 3ba36ce9b1..3c3210b472 100644 --- a/modules/calendar/e-task-shell-migrate.c +++ b/modules/calendar/e-task-shell-migrate.c @@ -617,7 +617,7 @@ e_task_shell_backend_migrate (EShellBackend *shell_backend, if (!migrate_ical_folder (l->data, on_this_computer, source_name, E_CAL_SOURCE_TYPE_TODO)) { /* FIXME: domain/code */ - g_set_error(error, 0, 0, _("Unable to migrate tasks `%s'"), source_name); + g_set_error(error, 0, 0, _("Unable to migrate tasks '%s'"), source_name); g_free(source_name); goto fail; } -- cgit v1.2.3