aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/cancel-comp.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui/dialogs/cancel-comp.c')
-rw-r--r--calendar/gui/dialogs/cancel-comp.c40
1 files changed, 12 insertions, 28 deletions
diff --git a/calendar/gui/dialogs/cancel-comp.c b/calendar/gui/dialogs/cancel-comp.c
index 3b72e5b31e..008f70e39e 100644
--- a/calendar/gui/dialogs/cancel-comp.c
+++ b/calendar/gui/dialogs/cancel-comp.c
@@ -27,6 +27,7 @@
#include <libgnome/gnome-i18n.h>
#include <libgnomeui/gnome-uidefs.h>
#include <e-util/e-icon-factory.h>
+#include "widgets/misc/e-error.h"
#include "cancel-comp.h"
@@ -42,42 +43,34 @@
gboolean
cancel_component_dialog (GtkWindow *parent, ECal *client, ECalComponent *comp, gboolean deleting)
{
- GtkWidget *dialog;
ECalComponentVType vtype;
- char *str;
- gint response;
-
+ const char *id;
+
if (deleting && e_cal_get_save_schedules (client))
return TRUE;
-
+
vtype = e_cal_component_get_vtype (comp);
-
+
switch (vtype) {
case E_CAL_COMPONENT_EVENT:
if (deleting)
- str = g_strdup_printf (_("The event being deleted is a meeting, "
- "would you like to send a cancellation notice?"));
+ id = "calendar:prompt-delete-meeting";
else
- str = g_strdup_printf (_("Are you sure you want to cancel "
- "and delete this meeting?"));
+ id = "calendar:prompt-cancel-meeting";
break;
case E_CAL_COMPONENT_TODO:
if (deleting)
- str = g_strdup_printf (_("The task being deleted is assigned, "
- "would you like to send a cancellation notice?"));
+ id = "calendar:prompt-delete-task";
else
- str = g_strdup_printf (_("Are you sure you want to cancel "
- "and delete this task?"));
+ id = "calendar:prompt-cancel-task";
break;
case E_CAL_COMPONENT_JOURNAL:
if (deleting)
- str = g_strdup_printf (_("The journal entry being deleted is published, "
- "would you like to send a cancellation notice?"));
+ id = "calendar:prompt-delete-journal";
else
- str = g_strdup_printf (_("Are you sure you want to cancel "
- "and delete this journal entry?"));
+ id = "calendar:prompt-cancel-journal";
break;
default:
@@ -86,16 +79,7 @@ cancel_component_dialog (GtkWindow *parent, ECal *client, ECalComponent *comp, g
return FALSE;
}
- dialog = gtk_message_dialog_new (parent, GTK_DIALOG_MODAL,
- GTK_MESSAGE_QUESTION,
- GTK_BUTTONS_YES_NO, str);
-
- gtk_window_set_icon (GTK_WINDOW (dialog), e_icon_factory_get_icon("stock_calendar", 32));
-
- response = gtk_dialog_run (GTK_DIALOG (dialog));
- gtk_widget_destroy (dialog);
-
- if (response == GTK_RESPONSE_YES)
+ if (e_error_run (parent, id, NULL) == GTK_RESPONSE_YES)
return TRUE;
else
return FALSE;