Index: Riskeer/Integration/src/Riskeer.Integration.IO/Importers/HydraulicBoundaryDataImporter.cs =================================================================== diff -u -r2ce70de3d6d063317e1ae1088281ded8704975cf -r9f5097b0cfaaa6bd6f456a28e0c3c6c8b8a2c925 --- Riskeer/Integration/src/Riskeer.Integration.IO/Importers/HydraulicBoundaryDataImporter.cs (.../HydraulicBoundaryDataImporter.cs) (revision 2ce70de3d6d063317e1ae1088281ded8704975cf) +++ Riskeer/Integration/src/Riskeer.Integration.IO/Importers/HydraulicBoundaryDataImporter.cs (.../HydraulicBoundaryDataImporter.cs) (revision 9f5097b0cfaaa6bd6f456a28e0c3c6c8b8a2c925) @@ -98,14 +98,14 @@ readHydraulicLocationConfigurationDatabase.ReadHydraulicLocationConfigurationDatabaseSettings; if (hydraulicLocationConfigurationDatabaseSettings != null && hydraulicLocationConfigurationDatabaseSettings.Count() != 1) { - Log.Error(BuildErrorMessage(hlcdFilePath, Resources.HydraulicBoundaryDatabaseImporter_HLCD_Invalid_number_of_ScenarioInformation_entries)); + Log.Error(BuildErrorMessage(hlcdFilePath, Resources.HydraulicBoundaryDataImporter_HLCD_Invalid_number_of_ScenarioInformation_entries)); return false; } if (readHydraulicLocationConfigurationDatabase.UsePreprocessorClosure && !File.Exists(HydraulicBoundaryDataHelper.GetPreprocessorClosureFilePath(hlcdFilePath))) { - Log.Error(BuildErrorMessage(hlcdFilePath, Resources.HydraulicBoundaryDatabaseImporter_PreprocessorClosure_sqlite_Not_Found)); + Log.Error(BuildErrorMessage(hlcdFilePath, Resources.HydraulicBoundaryDataImporter_PreprocessorClosure_sqlite_Not_Found)); return false; } @@ -124,7 +124,7 @@ protected override void LogImportCanceledMessage() { - Log.Info(Resources.HydraulicBoundaryDatabaseImporter_ProgressText_Import_canceled_No_data_changed); + Log.Info(Resources.HydraulicBoundaryDataImporter_ProgressText_Import_canceled_No_data_changed); } protected override void DoPostImportUpdates() @@ -150,7 +150,7 @@ private ReadResult ReadHydraulicBoundaryDatabase() { - NotifyProgress(Resources.HydraulicBoundaryDatabaseImporter_ProgressText_Reading_HRD_file, 1, numberOfSteps); + NotifyProgress(Resources.HydraulicBoundaryDataImporter_ProgressText_Reading_HRD_file, 1, numberOfSteps); try { using (var reader = new HydraulicBoundaryDatabaseReader(FilePath)) @@ -172,7 +172,7 @@ private ReadResult ReadHydraulicLocationConfigurationDatabase(string hlcdFilePath, long trackId) { - NotifyProgress(Resources.HydraulicBoundaryDatabaseImporter_ProgressText_Reading_HLCD_file, 2, numberOfSteps); + NotifyProgress(Resources.HydraulicBoundaryDataImporter_ProgressText_Reading_HLCD_file, 2, numberOfSteps); try { using (var reader = new HydraulicLocationConfigurationDatabaseReader(hlcdFilePath)) @@ -182,7 +182,7 @@ } catch (CriticalFileReadException) { - return HandleCriticalFileReadError(Resources.HydraulicBoundaryDatabaseImporter_HLCD_sqlite_Not_Found); + return HandleCriticalFileReadError(Resources.HydraulicBoundaryDataImporter_HLCD_sqlite_Not_Found); } } @@ -206,7 +206,7 @@ private ReadResult> ReadExcludedLocations() { - NotifyProgress(Resources.HydraulicBoundaryDatabaseImporter_ProgressText_Reading_HRD_settings_file, 3, numberOfSteps); + NotifyProgress(Resources.HydraulicBoundaryDataImporter_ProgressText_Reading_HRD_settings_file, 3, numberOfSteps); string hbsdFilePath = HydraulicBoundaryDataHelper.GetHydraulicBoundarySettingsDatabaseFilePath(FilePath); try { @@ -218,7 +218,7 @@ catch (CriticalFileReadException e) { return HandleCriticalFileReadError>( - string.Format(Resources.HydraulicBoundaryDatabaseImporter_Cannot_open_hydraulic_calculation_settings_file_0_, e.Message)); + string.Format(Resources.HydraulicBoundaryDataImporter_Cannot_open_hydraulic_calculation_settings_file_0_, e.Message)); } } @@ -251,7 +251,7 @@ private ReadResult HandleCriticalFileReadError(Exception e) { - string errorMessage = string.Format(Resources.HydraulicBoundaryDatabaseImporter_HandleCriticalFileReadError_Error_0_No_HydraulicBoundaryDatabase_imported, + string errorMessage = string.Format(Resources.HydraulicBoundaryDataImporter_HandleCriticalFileReadError_Error_0_No_HydraulicBoundaryDatabase_imported, e.Message); Log.Error(errorMessage); return new ReadResult(true); @@ -282,7 +282,7 @@ private static string BuildErrorMessage(string filePath, string message) { return new FileReaderErrorMessageBuilder(filePath).Build( - string.Format(Resources.HydraulicBoundaryDatabaseImporter_HandleCriticalFileReadError_Error_0_No_HydraulicBoundaryDatabase_imported, + string.Format(Resources.HydraulicBoundaryDataImporter_HandleCriticalFileReadError_Error_0_No_HydraulicBoundaryDatabase_imported, message)); } } Index: Riskeer/Integration/src/Riskeer.Integration.IO/Importers/HydraulicLocationConfigurationDatabaseImporter.cs =================================================================== diff -u -rc03e1120c6c515515347765389d19826b29dfd61 -r9f5097b0cfaaa6bd6f456a28e0c3c6c8b8a2c925 --- Riskeer/Integration/src/Riskeer.Integration.IO/Importers/HydraulicLocationConfigurationDatabaseImporter.cs (.../HydraulicLocationConfigurationDatabaseImporter.cs) (revision c03e1120c6c515515347765389d19826b29dfd61) +++ Riskeer/Integration/src/Riskeer.Integration.IO/Importers/HydraulicLocationConfigurationDatabaseImporter.cs (.../HydraulicLocationConfigurationDatabaseImporter.cs) (revision 9f5097b0cfaaa6bd6f456a28e0c3c6c8b8a2c925) @@ -117,7 +117,7 @@ if (readHydraulicLocationConfigurationDatabase.UsePreprocessorClosure && !File.Exists(HydraulicBoundaryDataHelper.GetPreprocessorClosureFilePath(FilePath))) { - Log.Error(BuildErrorMessage(FilePath, Resources.HydraulicBoundaryDatabaseImporter_PreprocessorClosure_sqlite_Not_Found)); + Log.Error(BuildErrorMessage(FilePath, Resources.HydraulicBoundaryDataImporter_PreprocessorClosure_sqlite_Not_Found)); return false; } @@ -155,7 +155,7 @@ private ReadResult ReadTrackId() { - NotifyProgress(Resources.HydraulicBoundaryDatabaseImporter_ProgressText_Reading_HRD_file, 1, numberOfSteps); + NotifyProgress(Resources.HydraulicBoundaryDataImporter_ProgressText_Reading_HRD_file, 1, numberOfSteps); try { using (var reader = new HydraulicBoundaryDatabaseReader(hydraulicBoundaryData.FilePath)) @@ -177,7 +177,7 @@ private ReadResult ReadHydraulicLocationConfigurationDatabase(long trackId) { - NotifyProgress(Resources.HydraulicBoundaryDatabaseImporter_ProgressText_Reading_HLCD_file, 2, numberOfSteps); + NotifyProgress(Resources.HydraulicBoundaryDataImporter_ProgressText_Reading_HLCD_file, 2, numberOfSteps); try { using (var reader = new HydraulicLocationConfigurationDatabaseReader(FilePath)) Index: Riskeer/Integration/src/Riskeer.Integration.IO/Properties/Resources.Designer.cs =================================================================== diff -u -rb25d71c274bf802dc8dd9fce8c69fd8263f7c054 -r9f5097b0cfaaa6bd6f456a28e0c3c6c8b8a2c925 --- Riskeer/Integration/src/Riskeer.Integration.IO/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision b25d71c274bf802dc8dd9fce8c69fd8263f7c054) +++ Riskeer/Integration/src/Riskeer.Integration.IO/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 9f5097b0cfaaa6bd6f456a28e0c3c6c8b8a2c925) @@ -192,85 +192,83 @@ /// /// Looks up a localized string similar to Kon het rekeninstellingen bestand niet openen. {0}. /// - public static string HydraulicBoundaryDatabaseImporter_Cannot_open_hydraulic_calculation_settings_file_0_ { + public static string HydraulicBoundaryDataImporter_Cannot_open_hydraulic_calculation_settings_file_0_ { get { - return ResourceManager.GetString("HydraulicBoundaryDatabaseImporter_Cannot_open_hydraulic_calculation_settings_file" + - "_0_", resourceCulture); + return ResourceManager.GetString("HydraulicBoundaryDataImporter_Cannot_open_hydraulic_calculation_settings_file_0_", resourceCulture); } } /// /// Looks up a localized string similar to {0} ///Er is geen hydraulische belastingen database gekoppeld.. /// - public static string HydraulicBoundaryDatabaseImporter_HandleCriticalFileReadError_Error_0_No_HydraulicBoundaryDatabase_imported { + public static string HydraulicBoundaryDataImporter_HandleCriticalFileReadError_Error_0_No_HydraulicBoundaryDatabase_imported { get { - return ResourceManager.GetString("HydraulicBoundaryDatabaseImporter_HandleCriticalFileReadError_Error_0_No_Hydrauli" + - "cBoundaryDatabase_imported", resourceCulture); + return ResourceManager.GetString("HydraulicBoundaryDataImporter_HandleCriticalFileReadError_Error_0_No_HydraulicBou" + + "ndaryDatabase_imported", resourceCulture); } } /// /// Looks up a localized string similar to De tabel 'ScenarioInformation' in het HLCD bestand moet exact 1 rij bevatten.. /// - public static string HydraulicBoundaryDatabaseImporter_HLCD_Invalid_number_of_ScenarioInformation_entries { + public static string HydraulicBoundaryDataImporter_HLCD_Invalid_number_of_ScenarioInformation_entries { get { - return ResourceManager.GetString("HydraulicBoundaryDatabaseImporter_HLCD_Invalid_number_of_ScenarioInformation_entr" + - "ies", resourceCulture); + return ResourceManager.GetString("HydraulicBoundaryDataImporter_HLCD_Invalid_number_of_ScenarioInformation_entries", resourceCulture); } } /// /// Looks up a localized string similar to Het bijbehorende HLCD bestand is niet gevonden in dezelfde map als het HRD bestand.. /// - public static string HydraulicBoundaryDatabaseImporter_HLCD_sqlite_Not_Found { + public static string HydraulicBoundaryDataImporter_HLCD_sqlite_Not_Found { get { - return ResourceManager.GetString("HydraulicBoundaryDatabaseImporter_HLCD_sqlite_Not_Found", resourceCulture); + return ResourceManager.GetString("HydraulicBoundaryDataImporter_HLCD_sqlite_Not_Found", resourceCulture); } } /// /// Looks up a localized string similar to Het bijbehorende preprocessor closure bestand is niet gevonden in dezelfde map als het HLCD bestand.. /// - public static string HydraulicBoundaryDatabaseImporter_PreprocessorClosure_sqlite_Not_Found { + public static string HydraulicBoundaryDataImporter_PreprocessorClosure_sqlite_Not_Found { get { - return ResourceManager.GetString("HydraulicBoundaryDatabaseImporter_PreprocessorClosure_sqlite_Not_Found", resourceCulture); + return ResourceManager.GetString("HydraulicBoundaryDataImporter_PreprocessorClosure_sqlite_Not_Found", resourceCulture); } } /// /// Looks up a localized string similar to Hydraulische belastingen database koppelen afgebroken. Geen gegevens gewijzigd.. /// - public static string HydraulicBoundaryDatabaseImporter_ProgressText_Import_canceled_No_data_changed { + public static string HydraulicBoundaryDataImporter_ProgressText_Import_canceled_No_data_changed { get { - return ResourceManager.GetString("HydraulicBoundaryDatabaseImporter_ProgressText_Import_canceled_No_data_changed", resourceCulture); + return ResourceManager.GetString("HydraulicBoundaryDataImporter_ProgressText_Import_canceled_No_data_changed", resourceCulture); } } /// /// Looks up a localized string similar to Inlezen van het hydraulische locatie configuratie bestand.. /// - public static string HydraulicBoundaryDatabaseImporter_ProgressText_Reading_HLCD_file { + public static string HydraulicBoundaryDataImporter_ProgressText_Reading_HLCD_file { get { - return ResourceManager.GetString("HydraulicBoundaryDatabaseImporter_ProgressText_Reading_HLCD_file", resourceCulture); + return ResourceManager.GetString("HydraulicBoundaryDataImporter_ProgressText_Reading_HLCD_file", resourceCulture); } } /// /// Looks up a localized string similar to Inlezen van het hydraulische belastingen bestand.. /// - public static string HydraulicBoundaryDatabaseImporter_ProgressText_Reading_HRD_file { + public static string HydraulicBoundaryDataImporter_ProgressText_Reading_HRD_file { get { - return ResourceManager.GetString("HydraulicBoundaryDatabaseImporter_ProgressText_Reading_HRD_file", resourceCulture); + return ResourceManager.GetString("HydraulicBoundaryDataImporter_ProgressText_Reading_HRD_file", resourceCulture); } } /// /// Looks up a localized string similar to Inlezen van het rekeninstellingen bestand.. /// - public static string HydraulicBoundaryDatabaseImporter_ProgressText_Reading_HRD_settings_file { + public static string HydraulicBoundaryDataImporter_ProgressText_Reading_HRD_settings_file { get { - return ResourceManager.GetString("HydraulicBoundaryDatabaseImporter_ProgressText_Reading_HRD_settings_file", resourceCulture); + return ResourceManager.GetString("HydraulicBoundaryDataImporter_ProgressText_Reading_HRD_settings_file", resourceCulture); } } Index: Riskeer/Integration/src/Riskeer.Integration.IO/Properties/Resources.resx =================================================================== diff -u -rb25d71c274bf802dc8dd9fce8c69fd8263f7c054 -r9f5097b0cfaaa6bd6f456a28e0c3c6c8b8a2c925 --- Riskeer/Integration/src/Riskeer.Integration.IO/Properties/Resources.resx (.../Resources.resx) (revision b25d71c274bf802dc8dd9fce8c69fd8263f7c054) +++ Riskeer/Integration/src/Riskeer.Integration.IO/Properties/Resources.resx (.../Resources.resx) (revision 9f5097b0cfaaa6bd6f456a28e0c3c6c8b8a2c925) @@ -138,29 +138,29 @@ Om assemblageresultaten te kunnen exporteren moeten alle specifieke faalmechanismen die onderdeel zijn van de assemblage een unieke naam hebben. - + Inlezen van het hydraulische belastingen bestand. - + {0} Er is geen hydraulische belastingen database gekoppeld. - + Hydraulische belastingen database koppelen afgebroken. Geen gegevens gewijzigd. - + Inlezen van het hydraulische locatie configuratie bestand. - + Het bijbehorende HLCD bestand is niet gevonden in dezelfde map als het HRD bestand. - + Inlezen van het rekeninstellingen bestand. - + Kon het rekeninstellingen bestand niet openen. {0} - + De tabel 'ScenarioInformation' in het HLCD bestand moet exact 1 rij bevatten. @@ -179,7 +179,7 @@ 1 of meerdere locaties komen niet voor in de HLCD. - + Het bijbehorende preprocessor closure bestand is niet gevonden in dezelfde map als het HLCD bestand.