Index: /branches/eraser6/Manager/Strings.resx
===================================================================
--- /branches/eraser6/Manager/Strings.resx	(revision 1031)
+++ /branches/eraser6/Manager/Strings.resx	(revision 1032)
@@ -193,4 +193,7 @@
     <value>EntropySource GUID not found: {0}</value>
   </data>
+  <data name="The file system on the drive {0} is not supported." xml:space="preserve">
+    <value>The file system on the drive {0} is not supported.</value>
+  </data>
   <data name="Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data." xml:space="preserve">
     <value>Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data.</value>
Index: /branches/eraser6/Manager/Strings.en.resx
===================================================================
--- /branches/eraser6/Manager/Strings.en.resx	(revision 1031)
+++ /branches/eraser6/Manager/Strings.en.resx	(revision 1032)
@@ -193,4 +193,7 @@
     <value>EntropySource GUID not found: {0}</value>
   </data>
+  <data name="The file system on the drive {0} is not supported." xml:space="preserve">
+    <value>The file system on the drive {0} is not supported.</value>
+  </data>
   <data name="Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data." xml:space="preserve">
     <value>Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data.</value>
Index: /branches/eraser6/Manager/Strings.nl.resx
===================================================================
--- /branches/eraser6/Manager/Strings.nl.resx	(revision 1031)
+++ /branches/eraser6/Manager/Strings.nl.resx	(revision 1032)
@@ -193,4 +193,7 @@
     <value>(Untranslated)</value>
   </data>
+  <data name="The file system on the drive {0} is not supported." xml:space="preserve">
+    <value>(Untranslated)</value>
+  </data>
   <data name="Plausible deniability was selected, but no decoy files were found. The current file has been only replaced with random data." xml:space="preserve">
     <value>(Untranslated)</value>
Index: /branches/eraser6/Manager/FileSystem.cs
===================================================================
--- /branches/eraser6/Manager/FileSystem.cs	(revision 1031)
+++ /branches/eraser6/Manager/FileSystem.cs	(revision 1032)
@@ -49,4 +49,5 @@
 			{
 				case "FAT":
+				case "FAT32":
 					return new FatFileSystem();
 				case "NTFS":
@@ -54,5 +55,6 @@
 			}
 
-			throw new NotSupportedException();
+			throw new NotSupportedException(S._("The file system on the drive {0} is not " +
+				"supported.", volume.IsMounted ? volume.MountPoints[0] : volume.VolumeId));
 		}
 
