aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/comp-editor-factory.c
diff options
context:
space:
mode:
authorTobias Mueller <tobiasmue@svn.gnome.org>2007-12-14 02:23:31 +0800
committerTobias Mueller <tobiasmue@src.gnome.org>2007-12-14 02:23:31 +0800
commitcda4109744c046a8f780ab6114d790ed014f86a6 (patch)
treeebc0f0818caa3c349467ca0f28655d12799f5441 /calendar/gui/comp-editor-factory.c
parentc73bf5eaa749b85c3b06038a4898b006bdf7491e (diff)
downloadgsoc2013-evolution-cda4109744c046a8f780ab6114d790ed014f86a6.tar
gsoc2013-evolution-cda4109744c046a8f780ab6114d790ed014f86a6.tar.gz
gsoc2013-evolution-cda4109744c046a8f780ab6114d790ed014f86a6.tar.bz2
gsoc2013-evolution-cda4109744c046a8f780ab6114d790ed014f86a6.tar.lz
gsoc2013-evolution-cda4109744c046a8f780ab6114d790ed014f86a6.tar.xz
gsoc2013-evolution-cda4109744c046a8f780ab6114d790ed014f86a6.tar.zst
gsoc2013-evolution-cda4109744c046a8f780ab6114d790ed014f86a6.zip
** Fixes bug 474651
2007-12-13 Tobias Mueller <tobiasmue@svn.gnome.org> ** Fixes bug 474651 * calendar/gui/memos-component.c: * addressbook/gui/component/addressbook.c: * calendar/gui/tasks-control.c: * calendar/gui/tasks-component.c: * widgets/misc/e-dateedit.c: * calendar/gui/e-cal-model-tasks.c: * widgets/misc/e-cell-percent.c: * calendar/gui/e-itip-control.c: * calendar/gui/comp-editor-factory.c: Use format strings in gtk_message_dialog_new svn path=/trunk/; revision=34694
Diffstat (limited to 'calendar/gui/comp-editor-factory.c')
-rw-r--r--calendar/gui/comp-editor-factory.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/comp-editor-factory.c b/calendar/gui/comp-editor-factory.c
index a7f6a3b493..6643d49ecd 100644
--- a/calendar/gui/comp-editor-factory.c
+++ b/calendar/gui/comp-editor-factory.c
@@ -401,31 +401,31 @@ cal_opened_cb (ECal *client, ECalendarStatus status, gpointer data)
case E_CALENDAR_STATUS_NO_SUCH_CALENDAR:
dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
- _("Error while opening the calendar"));
+ "%s", _("Error while opening the calendar"));
break;
case E_CALENDAR_STATUS_PROTOCOL_NOT_SUPPORTED:
dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
- _("Method not supported when opening the calendar"));
+ "%s", _("Method not supported when opening the calendar"));
break;
case E_CALENDAR_STATUS_PERMISSION_DENIED :
dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
- _("Permission denied to open the calendar"));
+ "%s", _("Permission denied to open the calendar"));
break;
case E_CALENDAR_STATUS_AUTHENTICATION_FAILED :
dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
- _("Authentication Failed"));
+ "%s", _("Authentication Failed"));
break;
default:
dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
- _("Unknown error"));
+ "%s", _("Unknown error"));
return;
}