Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.Designer.cs =================================================================== diff -u -r53060003d1d7516c3918ec29d12ed6cbdd868a6d -r3cf7cee528e08dbf46d6a2c08e0fbe4416059e0c --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 53060003d1d7516c3918ec29d12ed6cbdd868a6d) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 3cf7cee528e08dbf46d6a2c08e0fbe4416059e0c) @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.42000 +// Runtime Version:4.0.30319.17929 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -1832,9 +1832,9 @@ /// /// Looks up a localized string similar to Stochastisch ondergrondmodellen. /// - public static string StochasticSoilModelCollection { + public static string StochasticSoilModelCollection_DisplayName { get { - return ResourceManager.GetString("StochasticSoilModelCollection", resourceCulture); + return ResourceManager.GetString("StochasticSoilModelCollection_DisplayName", resourceCulture); } } Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.resx =================================================================== diff -u -r53060003d1d7516c3918ec29d12ed6cbdd868a6d -r3cf7cee528e08dbf46d6a2c08e0fbe4416059e0c --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.resx (.../Resources.resx) (revision 53060003d1d7516c3918ec29d12ed6cbdd868a6d) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.resx (.../Resources.resx) (revision 3cf7cee528e08dbf46d6a2c08e0fbe4416059e0c) @@ -742,7 +742,7 @@ Bijdrage ondergrond profiel in % - + Stochastisch ondergrondmodellen \ No newline at end of file Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingFailureMechanismView.cs =================================================================== diff -u -r53060003d1d7516c3918ec29d12ed6cbdd868a6d -r3cf7cee528e08dbf46d6a2c08e0fbe4416059e0c --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingFailureMechanismView.cs (.../PipingFailureMechanismView.cs) (revision 53060003d1d7516c3918ec29d12ed6cbdd868a6d) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingFailureMechanismView.cs (.../PipingFailureMechanismView.cs) (revision 3cf7cee528e08dbf46d6a2c08e0fbe4416059e0c) @@ -171,7 +171,7 @@ { if (data == null || data.WrappedData == null || data.WrappedData.StochasticSoilModels == null || !data.WrappedData.StochasticSoilModels.Any()) { - return PipingMapDataFactory.CreateEmptyLineData(PipingFormsResources.StochasticSoilModelCollection); + return PipingMapDataFactory.CreateEmptyLineData(PipingFormsResources.StochasticSoilModelCollection_DisplayName); } return PipingMapDataFactory.Create(data.WrappedData.StochasticSoilModels); } Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingMapDataFactory.cs =================================================================== diff -u -r53060003d1d7516c3918ec29d12ed6cbdd868a6d -r3cf7cee528e08dbf46d6a2c08e0fbe4416059e0c --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingMapDataFactory.cs (.../PipingMapDataFactory.cs) (revision 53060003d1d7516c3918ec29d12ed6cbdd868a6d) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingMapDataFactory.cs (.../PipingMapDataFactory.cs) (revision 3cf7cee528e08dbf46d6a2c08e0fbe4416059e0c) @@ -85,7 +85,7 @@ new MapFeature(stochasticSoilModels.Select(stochasticSoilModel => new MapGeometry(stochasticSoilModel.Geometry.Select(p => new Point2D(p.X, p.Y))))) }; - return new MapLineData(mapFeatures, Resources.StochasticSoilModelCollection) + return new MapLineData(mapFeatures, Resources.StochasticSoilModelCollection_DisplayName) { Style = new LineStyle(Color.SaddleBrown, 5, DashStyle.Solid) }; Index: Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingMapDataFactoryTest.cs =================================================================== diff -u -r53060003d1d7516c3918ec29d12ed6cbdd868a6d -r3cf7cee528e08dbf46d6a2c08e0fbe4416059e0c --- Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingMapDataFactoryTest.cs (.../PipingMapDataFactoryTest.cs) (revision 53060003d1d7516c3918ec29d12ed6cbdd868a6d) +++ Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingMapDataFactoryTest.cs (.../PipingMapDataFactoryTest.cs) (revision 3cf7cee528e08dbf46d6a2c08e0fbe4416059e0c) @@ -150,7 +150,7 @@ Assert.AreEqual(2, mapLineData.Features.ElementAt(0).MapGeometries.Count()); AssertEqualPointCollections(pointsOne, mapLineData.Features.ElementAt(0).MapGeometries.ElementAt(0)); AssertEqualPointCollections(pointsTwo, mapLineData.Features.ElementAt(0).MapGeometries.ElementAt(1)); - Assert.AreEqual(Resources.StochasticSoilModelCollection, data.Name); + Assert.AreEqual(Resources.StochasticSoilModelCollection_DisplayName, data.Name); AssertEqualStyle(mapLineData.Style, Color.SaddleBrown, 5, DashStyle.Solid); }