core/com.nokia.carbide.discovery.ui/src/com/nokia/carbide/internal/discovery/ui/wizard/ExportWizard.java
changeset 1885 988b4ab1b8c1
parent 1884 94c9fe3693ea
child 1888 fc9d5d520518
--- a/core/com.nokia.carbide.discovery.ui/src/com/nokia/carbide/internal/discovery/ui/wizard/ExportWizard.java	Wed Aug 25 15:24:01 2010 -0500
+++ b/core/com.nokia.carbide.discovery.ui/src/com/nokia/carbide/internal/discovery/ui/wizard/ExportWizard.java	Wed Aug 25 15:37:23 2010 -0500
@@ -88,7 +88,7 @@
 			try {
 				Streamer.writeToXML(new FileOutputStream(file), data);
 			} catch (Exception e) {
-				Activator.logError("Could not write installed features file: " + file, e);
+				Activator.logError(Messages.ExportWizard_WriteInstalledFeaturesError + file, e);
 			}
 		}
 		else {
@@ -96,7 +96,7 @@
 				ImportExportData data = Streamer.readFromXML(new FileInputStream(file));
 				installedFeatures = data.getFeatureInfos();
 			} catch (Exception e) {
-				Activator.logError("Could not read installed features file: " + file, e);
+				Activator.logError(Messages.ExportWizard_ReadInstalledFeaturesError + file, e);
 			}
 		}