Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructureProperties.cs =================================================================== diff -u -rd499bba7f0abdb8481bfe1ffc619414116a13121 -r6954e174ae758a8ef11bfdfce0da0aa135460fb6 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructureProperties.cs (.../HeightStructureProperties.cs) (revision d499bba7f0abdb8481bfe1ffc619414116a13121) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/PropertyClasses/HeightStructureProperties.cs (.../HeightStructureProperties.cs) (revision 6954e174ae758a8ef11bfdfce0da0aa135460fb6) @@ -63,44 +63,44 @@ [PropertyOrder(3)] [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_Schematization")] - [ResourcesDisplayName(typeof(Resources), "OrientationOfTheNormalOfTheStructure_DisplayName")] - [ResourcesDescription(typeof(Resources), "OrientationOfTheNormalOfTheStructure_Description")] - public RoundedDouble OrientationOfTheNormalOfTheStructure + [ResourcesDisplayName(typeof(Resources), "StructureNormalOrientation_DisplayName")] + [ResourcesDescription(typeof(Resources), "StructureNormalOrientation_Description")] + public RoundedDouble StructureNormalOrientation { get { - return data.OrientationOfTheNormalOfTheStructure; + return data.StructureNormalOrientation; } } [PropertyOrder(4)] [TypeConverter(typeof(ExpandableObjectConverter))] [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_Schematization")] - [ResourcesDisplayName(typeof(Resources), "LevelOfCrestOfStructure_DisplayName")] - [ResourcesDescription(typeof(Resources), "LevelOfCrestOfStructure_Description")] - public NormalDistributionProperties LevelOfCrestOfStructure + [ResourcesDisplayName(typeof(Resources), "LevelCrestStructure_DisplayName")] + [ResourcesDescription(typeof(Resources), "LevelCrestStructure_Description")] + public NormalDistributionProperties LevelCrestStructure { get { return new NormalDistributionProperties { - Data = data.LevelOfCrestOfStructure + Data = data.LevelCrestStructure }; } } [PropertyOrder(5)] [TypeConverter(typeof(ExpandableObjectConverter))] [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_Schematization")] - [ResourcesDisplayName(typeof(Resources), "AllowableIncreaseOfLevelForStorage_DisplayName")] - [ResourcesDescription(typeof(Resources), "AllowableIncreaseOfLevelForStorage_Description")] - public LogNormalDistributionProperties AllowableIncreaseOfLevelForStorage + [ResourcesDisplayName(typeof(Resources), "AllowedLevelIncreaseStorage_DisplayName")] + [ResourcesDescription(typeof(Resources), "AllowedLevelIncreaseStorage_Description")] + public LogNormalDistributionProperties AllowedLevelIncreaseStorage { get { return new LogNormalDistributionProperties { - Data = data.AllowableIncreaseOfLevelForStorage + Data = data.AllowedLevelIncreaseStorage }; } }