Reverted the string marked for translation as we are in string freeze mode
authorChenthill Palanisamy <pchenthill@novell.com>
Mon, 18 Feb 2008 11:03:29 +0000 (11:03 +0000)
committerChenthill Palanisamy <pchen@src.gnome.org>
Mon, 18 Feb 2008 11:03:29 +0000 (11:03 +0000)
2008-02-18  Chenthill Palanisamy  <pchenthill@novell.com>

        * backends/file/e-cal-backend-file.c (save_file_when_idle):
        * Reverted the string marked for translation as we are in string freeze
        mode now.

svn path=/trunk/; revision=8503

calendar/ChangeLog
calendar/backends/file/e-cal-backend-file.c

index 3329a35..81139e2 100644 (file)
@@ -1,5 +1,17 @@
 2008-02-18  Chenthill Palanisamy  <pchenthill@novell.com>
 
+       * backends/file/e-cal-backend-file.c (save_file_when_idle): Reverted
+       the string marked for translation as we are in string freeze mode now.                                                              
+
+2008-02-18  Chenthill Palanisamy  <pchenthill@novell.com>
+
+       reviewed by: <delete if not using a buddy>
+
+       * backends/contacts/e-cal-backend-contacts.c (cdate_to_icaltime):
+       * backends/groupwise/e-cal-backend-groupwise-utils.h:
+
+2008-02-18  Chenthill Palanisamy  <pchenthill@novell.com>
+
        Fixes #163982 (bnc)
        * backends/file/e-cal-backend-file.c (save_file_when_idle),
        (add_component): Do not keep popuping up error dialogs in case
index 4b2d203..a5f4896 100644 (file)
@@ -128,7 +128,6 @@ save_file_when_idle (gpointer user_data)
        GnomeVFSFileSize out;
        gchar *tmp, *backup_uristr;
        char *buf;
-       char *error = NULL;
        ECalBackendFile *cbfile = user_data;
 
        priv = cbfile->priv;
@@ -206,9 +205,9 @@ save_file_when_idle (gpointer user_data)
 
  error:
        g_static_rec_mutex_unlock (&priv->idle_save_rmutex);
-       error = g_strconcat (_("Can't save calendar data: "), gnome_vfs_result_to_string (result), NULL);
-       e_cal_backend_notify_error (E_CAL_BACKEND (cbfile), error);
-       g_free (error);  
+       /* TODO Add concat the message "Cannot save calendar data" to the error string later.Not
+          doing it now as we have string freeze. */
+       e_cal_backend_notify_error (E_CAL_BACKEND (cbfile), gnome_vfs_result_to_string (result));
        return FALSE;
 }