Index: /applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV/ColumbusCSVReader.java
===================================================================
--- /applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV/ColumbusCSVReader.java	(revision 26827)
+++ /applications/editors/josm/plugins/ColumbusCSV/src/org/openstreetmap/josm/plugins/columbusCSV/ColumbusCSVReader.java	(revision 26828)
@@ -231,6 +231,6 @@
 
 		for (int i = first; i < last; i++) {			
-			String voxFile = String.format("vox%05d", i);
-			String nextVoxFile = String.format("vox%05d", i+1);
+			String voxFile = String.format("vox%05d.wav", i);
+			String nextVoxFile = String.format("vox%05d.wav", i+1);
 			if (!voxFiles.containsKey(voxFile)) {
 				System.out.println("Found lost vox file " + voxFile);
@@ -371,4 +371,5 @@
 
 		if (!ColumbusCSVUtils.isStringNullOrEmpty(voxFile)) {
+			voxFile = voxFile + ".wav";
 			File file = getVoxFilePath(fileDir, voxFile);
 			if (file != null && file.exists()) {
@@ -453,5 +454,6 @@
 		
 		for (int i = 0; i < fileNameVariants.length; i++) {
-			File file = new File(fileDir + File.separator + fileNameVariants[i] + ".wav");
+			System.out.println("Probing "+ fileNameVariants[i]);
+			File file = new File(fileDir + File.separator + fileNameVariants[i]);
 			if (file.exists()) {
 				return file;
