aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-05-08 20:05:11 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-05-08 20:28:09 +0800
commit58ef54715147561c2b8d458dd75c44223c46ac10 (patch)
tree56fff6b4e7f64b2a62641e065e465bbac4f6bfcc /calendar/gui/dialogs
parent0ccccead12fae581ea9be349154928c1215896d5 (diff)
downloadgsoc2013-evolution-58ef54715147561c2b8d458dd75c44223c46ac10.tar
gsoc2013-evolution-58ef54715147561c2b8d458dd75c44223c46ac10.tar.gz
gsoc2013-evolution-58ef54715147561c2b8d458dd75c44223c46ac10.tar.bz2
gsoc2013-evolution-58ef54715147561c2b8d458dd75c44223c46ac10.tar.lz
gsoc2013-evolution-58ef54715147561c2b8d458dd75c44223c46ac10.tar.xz
gsoc2013-evolution-58ef54715147561c2b8d458dd75c44223c46ac10.tar.zst
gsoc2013-evolution-58ef54715147561c2b8d458dd75c44223c46ac10.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r--calendar/gui/dialogs/comp-editor.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 7a566e85ac..dd58b86ce6 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -1061,19 +1061,19 @@ save_and_close_editor (CompEditor *editor,
switch (source_type) {
case (E_CAL_CLIENT_SOURCE_TYPE_TASKS):
msg = g_strdup_printf (
- _("Unable to retrieve saved component from the task list, returned error was: %s"),
- error->message);
+ _("Unable to retrieve saved component from the task list, returned error was: %s"),
+ error->message);
break;
case (E_CAL_CLIENT_SOURCE_TYPE_MEMOS):
msg = g_strdup_printf (
- _("Unable to retrieve saved component from the memo list, returned error was: %s"),
- error->message);
+ _("Unable to retrieve saved component from the memo list, returned error was: %s"),
+ error->message);
break;
case (E_CAL_CLIENT_SOURCE_TYPE_EVENTS):
default:
msg = g_strdup_printf (
- _("Unable to retrieve saved component from the calendar, returned error was: %s"),
- error->message);
+ _("Unable to retrieve saved component from the calendar, returned error was: %s"),
+ error->message);
break;
}
g_clear_error (&error);
@@ -1081,16 +1081,16 @@ save_and_close_editor (CompEditor *editor,
switch (source_type) {
case (E_CAL_CLIENT_SOURCE_TYPE_TASKS):
msg = g_strdup (
- _("Unable to retrieve saved component from the task list"));
+ _("Unable to retrieve saved component from the task list"));
break;
case (E_CAL_CLIENT_SOURCE_TYPE_MEMOS):
msg = g_strdup (
- _("Unable to retrieve saved component from the memo list"));
+ _("Unable to retrieve saved component from the memo list"));
break;
case (E_CAL_CLIENT_SOURCE_TYPE_EVENTS):
default:
msg = g_strdup (
- _("Unable to retrieve saved component from the calendar"));
+ _("Unable to retrieve saved component from the calendar"));
break;
}
}
@@ -1111,16 +1111,16 @@ save_and_close_editor (CompEditor *editor,
switch (source_type) {
case (E_CAL_CLIENT_SOURCE_TYPE_TASKS):
msg = g_strdup (
- _("Unable to update the editor with the retrieved component from the task list"));
+ _("Unable to update the editor with the retrieved component from the task list"));
break;
case (E_CAL_CLIENT_SOURCE_TYPE_MEMOS):
msg = g_strdup (
- _("Unable to update the editor with the retrieved component from the memo list"));
+ _("Unable to update the editor with the retrieved component from the memo list"));
break;
case (E_CAL_CLIENT_SOURCE_TYPE_EVENTS):
default:
msg = g_strdup (
- _("Unable to update the editor with the retrieved component from the calendar"));
+ _("Unable to update the editor with the retrieved component from the calendar"));
break;
}
e_notice (GTK_WINDOW (editor), GTK_MESSAGE_ERROR, "%s", msg);