aboutsummaryrefslogtreecommitdiffstats
path: root/modules/calendar
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-03-29 06:54:27 +0800
committerMichael Meeks <michael.meeks@novell.com>2010-04-07 19:25:57 +0800
commit1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2 (patch)
tree258829f55f8c6edf1b3ee3da595ff092ef52850e /modules/calendar
parentdfdb970ac69e3058418875aa043f9d2a17ea5945 (diff)
downloadgsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.gz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.bz2
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.lz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.xz
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.tar.zst
gsoc2013-evolution-1d6ecf87aa0e54f07dcf462459dd26c4056b9fe2.zip
Fix mismatched quotes.
Diffstat (limited to 'modules/calendar')
-rw-r--r--modules/calendar/e-cal-shell-backend.c2
-rw-r--r--modules/calendar/e-cal-shell-migrate.c2
-rw-r--r--modules/calendar/e-memo-shell-backend.c2
-rw-r--r--modules/calendar/e-task-shell-backend.c2
-rw-r--r--modules/calendar/e-task-shell-migrate.c2
5 files changed, 5 insertions, 5 deletions
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 979b525304..b0635b6e38 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 7926555ec6..e428c9413e 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;
}