Index: Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs =================================================================== diff -u -re5d8b58dcb5fcf82338b0511f3e9dc4d78633fda -rdd0789232e8d39c64a6e89e0637f6848b02eae1e --- Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision e5d8b58dcb5fcf82338b0511f3e9dc4d78633fda) +++ Ringtoets/Integration/src/Ringtoets.Integration.Plugin/RingtoetsPlugin.cs (.../RingtoetsPlugin.cs) (revision dd0789232e8d39c64a6e89e0637f6848b02eae1e) @@ -1872,21 +1872,45 @@ { return new object[] { - new DesignWaterLevelLocationsContext(context.WrappedData, context.AssessmentSection, hbl => hbl.DesignWaterLevelCalculation1), - new DesignWaterLevelLocationsContext(context.WrappedData, context.AssessmentSection, hbl => hbl.DesignWaterLevelCalculation2), - new DesignWaterLevelLocationsContext(context.WrappedData, context.AssessmentSection, hbl => hbl.DesignWaterLevelCalculation3), - new DesignWaterLevelLocationsContext(context.WrappedData, context.AssessmentSection, hbl => hbl.DesignWaterLevelCalculation4) + new DesignWaterLevelLocationsContext(context.WrappedData, + context.AssessmentSection, + hbl => hbl.DesignWaterLevelCalculation1, + RingtoetsIntegrationPluginResources.Hydraulic_category_boundary_name_1), + new DesignWaterLevelLocationsContext(context.WrappedData, + context.AssessmentSection, + hbl => hbl.DesignWaterLevelCalculation2, + RingtoetsIntegrationPluginResources.Hydraulic_category_boundary_name_2), + new DesignWaterLevelLocationsContext(context.WrappedData, + context.AssessmentSection, + hbl => hbl.DesignWaterLevelCalculation3, + RingtoetsIntegrationPluginResources.Hydraulic_category_boundary_name_3), + new DesignWaterLevelLocationsContext(context.WrappedData, + context.AssessmentSection, + hbl => hbl.DesignWaterLevelCalculation4, + RingtoetsIntegrationPluginResources.Hydraulic_category_boundary_name_4) }; } private static object[] WaveHeightLocationsGroupContextChildNodeObjects(WaveHeightLocationsGroupContext context) { return new object[] { - new WaveHeightLocationsContext(context.WrappedData, context.AssessmentSection, hbl => hbl.WaveHeightCalculation1), - new WaveHeightLocationsContext(context.WrappedData, context.AssessmentSection, hbl => hbl.WaveHeightCalculation2), - new WaveHeightLocationsContext(context.WrappedData, context.AssessmentSection, hbl => hbl.WaveHeightCalculation3), - new WaveHeightLocationsContext(context.WrappedData, context.AssessmentSection, hbl => hbl.WaveHeightCalculation4) + new WaveHeightLocationsContext(context.WrappedData, + context.AssessmentSection, + hbl => hbl.WaveHeightCalculation1, + RingtoetsIntegrationPluginResources.Hydraulic_category_boundary_name_1), + new WaveHeightLocationsContext(context.WrappedData, + context.AssessmentSection, + hbl => hbl.WaveHeightCalculation2, + RingtoetsIntegrationPluginResources.Hydraulic_category_boundary_name_2), + new WaveHeightLocationsContext(context.WrappedData, + context.AssessmentSection, + hbl => hbl.WaveHeightCalculation3, + RingtoetsIntegrationPluginResources.Hydraulic_category_boundary_name_3), + new WaveHeightLocationsContext(context.WrappedData, + context.AssessmentSection, + hbl => hbl.WaveHeightCalculation4, + RingtoetsIntegrationPluginResources.Hydraulic_category_boundary_name_4) }; }