Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/DesignWaterLevelCalculationCategoryBoundaryProperties.cs =================================================================== diff -u -rbc82d5f6de0a739ad6e76be956aaa1b557c26451 -r36cf1b15b6f9f16306b93ce21966f6ca8658cd74 --- Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/DesignWaterLevelCalculationCategoryBoundaryProperties.cs (.../DesignWaterLevelCalculationCategoryBoundaryProperties.cs) (revision bc82d5f6de0a739ad6e76be956aaa1b557c26451) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/DesignWaterLevelCalculationCategoryBoundaryProperties.cs (.../DesignWaterLevelCalculationCategoryBoundaryProperties.cs) (revision 36cf1b15b6f9f16306b93ce21966f6ca8658cd74) @@ -23,7 +23,6 @@ using Core.Common.Util.Attributes; using Ringtoets.Common.Data.Hydraulics; using Ringtoets.Common.Forms.Properties; -using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources; namespace Ringtoets.Common.Forms.PropertyClasses { @@ -41,7 +40,7 @@ string categoryBoundaryName) : base(hydraulicBoundaryLocationCalculation, categoryBoundaryName) {} - [ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.WaterLevel_DisplayName))] + [ResourcesDisplayName(typeof(Resources), nameof(Resources.WaterLevel_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.DesignWaterLevelCalculation_Result_Description))] public override RoundedDouble Result { Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/DesignWaterLevelCalculationProperties.cs =================================================================== diff -u -rbc82d5f6de0a739ad6e76be956aaa1b557c26451 -r36cf1b15b6f9f16306b93ce21966f6ca8658cd74 --- Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/DesignWaterLevelCalculationProperties.cs (.../DesignWaterLevelCalculationProperties.cs) (revision bc82d5f6de0a739ad6e76be956aaa1b557c26451) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/PropertyClasses/DesignWaterLevelCalculationProperties.cs (.../DesignWaterLevelCalculationProperties.cs) (revision 36cf1b15b6f9f16306b93ce21966f6ca8658cd74) @@ -24,7 +24,6 @@ using Core.Common.Util.Attributes; using Ringtoets.Common.Data.Hydraulics; using Ringtoets.Common.Forms.Properties; -using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources; namespace Ringtoets.Common.Forms.PropertyClasses { @@ -41,7 +40,7 @@ public DesignWaterLevelCalculationProperties(HydraulicBoundaryLocationCalculation hydraulicBoundaryLocationCalculation) : base(hydraulicBoundaryLocationCalculation) {} - [ResourcesDisplayName(typeof(RingtoetsCommonFormsResources), nameof(RingtoetsCommonFormsResources.WaterLevel_DisplayName))] + [ResourcesDisplayName(typeof(Resources), nameof(Resources.WaterLevel_DisplayName))] [ResourcesDescription(typeof(Resources), nameof(Resources.DesignWaterLevelCalculation_Result_Description))] public override RoundedDouble Result { Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Service/MacroStabilityInwardsInputValidator.cs =================================================================== diff -u -r04018fa9ffd4635260787b078d9ac9e6ecda297a -r36cf1b15b6f9f16306b93ce21966f6ca8658cd74 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Service/MacroStabilityInwardsInputValidator.cs (.../MacroStabilityInwardsInputValidator.cs) (revision 04018fa9ffd4635260787b078d9ac9e6ecda297a) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Service/MacroStabilityInwardsInputValidator.cs (.../MacroStabilityInwardsInputValidator.cs) (revision 36cf1b15b6f9f16306b93ce21966f6ca8658cd74) @@ -32,6 +32,7 @@ using Ringtoets.MacroStabilityInwards.Data.SoilProfile; using Ringtoets.MacroStabilityInwards.Primitives; using Ringtoets.MacroStabilityInwards.Service.Properties; +using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources; using RingtoetsCommonServiceResources = Ringtoets.Common.Service.Properties.Resources; namespace Ringtoets.MacroStabilityInwards.Service @@ -268,7 +269,7 @@ if (inputParameters.UseAssessmentLevelManualInput) { - validationResult.AddRange(new NumericInputRule(inputParameters.AssessmentLevel, ParameterNameExtractor.GetFromDisplayName(Common.Forms.Properties.Resources.WaterLevel_DisplayName)).Validate()); + validationResult.AddRange(new NumericInputRule(inputParameters.AssessmentLevel, ParameterNameExtractor.GetFromDisplayName(RingtoetsCommonFormsResources.WaterLevel_DisplayName)).Validate()); } else {