diff options
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/calendar-offline-handler.c | 4 | ||||
-rw-r--r-- | calendar/gui/comp-editor-factory.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/calendar-offline-handler.c b/calendar/gui/calendar-offline-handler.c index 0e6ba290cf..510aad46fb 100644 --- a/calendar/gui/calendar-offline-handler.c +++ b/calendar/gui/calendar-offline-handler.c @@ -188,7 +188,7 @@ backend_go_offline (gpointer data, gpointer user_data) g_signal_connect (client, "cal_opened", G_CALLBACK (backend_cal_opened_offline), offline_handler); success = e_cal_open (client, TRUE, &error); if (!success) { - g_warning (_("backend_go_offline(): %s"), error->message); + g_warning (G_STRLOC ": %s", error->message); update_offline (offline_handler); g_object_unref (client); g_error_free (error); @@ -211,7 +211,7 @@ backend_go_online (gpointer data, gpointer user_data) G_CALLBACK (backend_cal_opened_online), offline_handler); success = e_cal_open (client, TRUE, &error); if (!success) { - g_warning (_("backend_go_online(): %s"), error->message); + g_warning (G_STRLOC ": %s", error->message); g_object_unref (client); g_error_free (error); return; diff --git a/calendar/gui/comp-editor-factory.c b/calendar/gui/comp-editor-factory.c index 56a75d557d..92f15812c4 100644 --- a/calendar/gui/comp-editor-factory.c +++ b/calendar/gui/comp-editor-factory.c @@ -478,7 +478,7 @@ open_client (CompEditorFactory *factory, ECalSourceType source_type, const char g_hash_table_insert (priv->uri_client_hash, oc->uri, oc); if (!e_cal_open (oc->client, FALSE, &error)) { - g_warning (_("open_client(): %s"), error->message); + g_warning (G_STRLOC ": %s", error->message); g_free (oc->uri); g_object_unref (oc->client); g_free (oc); |