=== added file 'debian/patches/10_less_verbose_disconnection_notifications.patch' --- old/debian/patches/10_less_verbose_disconnection_notifications.patch 1970-01-01 00:00:00 +0000 +++ new/debian/patches/10_less_verbose_disconnection_notifications.patch 2009-04-07 15:52:35 +0000 @@ -0,0 +1,28 @@ +=== modified file 'src/gnome-mount.c' +--- old/src/gnome-mount.c 2009-04-07 13:49:18 +0000 ++++ new/src/gnome-mount.c 2009-04-07 15:51:34 +0000 +@@ -1573,8 +1573,13 @@ + + g_debug ("putting up Flushing Cache notification"); + +- summary = _("Writing data to device"); +- message = g_strdup_printf (_("There is data that needs to be written to the device %s before it can be removed. Please do not remove the media or disconnect the drive."), unmount_note_drive_name); ++ summary = _("Finishing up..."); ++ if (unmount_note_is_eject) { ++ message = _("To prevent data loss, wait until this has finished before ejecting."); ++ } else { ++ message = _("To prevent data loss, wait until this has finished before disconnecting."); ++ } ++ + unmount_note = notify_notification_new (summary, + message, + "gnome-dev-harddisk", /* TODO: use appropriate icon */ +@@ -1587,7 +1592,6 @@ + notify_notification_show (unmount_note, NULL); + + } +- g_free (message); + } + #endif + +