Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.Designer.cs =================================================================== diff -u -r6df6f70e123f3130e110822dfec7ee55822aef5f -rf52a990475343ac20241f1657f8b7b56143881b0 --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 6df6f70e123f3130e110822dfec7ee55822aef5f) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision f52a990475343ac20241f1657f8b7b56143881b0) @@ -1,4 +1,25 @@ -//------------------------------------------------------------------------------ +// Copyright (C) Stichting Deltares 2016. All rights reserved. +// +// This file is part of Ringtoets. +// +// Ringtoets is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 @@ -1636,15 +1657,6 @@ } /// - /// Looks up a localized string similar to Ondergrondschematisaties. - /// - public static string StochasticSoilProfileCollection_DisplayName { - get { - return ResourceManager.GetString("StochasticSoilProfileCollection_DisplayName", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Ondergrondschematisatie. /// public static string StochasticSoilProfileProperties_DisplayName { Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.resx =================================================================== diff -u -r6df6f70e123f3130e110822dfec7ee55822aef5f -rf52a990475343ac20241f1657f8b7b56143881b0 --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.resx (.../Resources.resx) (revision 6df6f70e123f3130e110822dfec7ee55822aef5f) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/Properties/Resources.resx (.../Resources.resx) (revision f52a990475343ac20241f1657f8b7b56143881b0) @@ -268,9 +268,6 @@ ..\Resources\table-import.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - Ondergrondschematisaties - ..\Resources\chart_curve.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a Index: Ringtoets/Piping/src/Ringtoets.Piping.Plugin/PipingPlugin.cs =================================================================== diff -u -r8ba71c732f3183665dd911457dc62d8f6372d4cd -rf52a990475343ac20241f1657f8b7b56143881b0 --- Ringtoets/Piping/src/Ringtoets.Piping.Plugin/PipingPlugin.cs (.../PipingPlugin.cs) (revision 8ba71c732f3183665dd911457dc62d8f6372d4cd) +++ Ringtoets/Piping/src/Ringtoets.Piping.Plugin/PipingPlugin.cs (.../PipingPlugin.cs) (revision f52a990475343ac20241f1657f8b7b56143881b0) @@ -93,7 +93,7 @@ yield return new ImportInfo { - Name = PipingFormsResources.StochasticSoilProfileCollection_DisplayName, + Name = PipingFormsResources.StochasticSoilModelCollection_DisplayName, Category = RingtoetsCommonFormsResources.Ringtoets_Category, Image = PipingFormsResources.PipingSoilProfileIcon, FileFilter = string.Format("{0} (*.soil)|*.soil", PipingPluginResources.Soil_file_name), @@ -223,7 +223,7 @@ yield return new TreeNodeInfo { - Text = stochasticSoilModelContext => PipingFormsResources.StochasticSoilProfileCollection_DisplayName, + Text = stochasticSoilModelContext => PipingFormsResources.StochasticSoilModelCollection_DisplayName, Image = stochasticSoilModelContext => RingtoetsCommonFormsResources.GeneralFolderIcon, ForeColor = stochasticSoilModelContext => stochasticSoilModelContext.WrappedData.Any() ? Color.FromKnownColor(KnownColor.ControlText) : Color.FromKnownColor(KnownColor.GrayText), Index: Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/TreeNodeInfos/StochasticSoilModelContextTreeNodeInfoTest.cs =================================================================== diff -u -rdca4da4c1f78e4074d1a4513411e3509344ec169 -rf52a990475343ac20241f1657f8b7b56143881b0 --- Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/TreeNodeInfos/StochasticSoilModelContextTreeNodeInfoTest.cs (.../StochasticSoilModelContextTreeNodeInfoTest.cs) (revision dca4da4c1f78e4074d1a4513411e3509344ec169) +++ Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/TreeNodeInfos/StochasticSoilModelContextTreeNodeInfoTest.cs (.../StochasticSoilModelContextTreeNodeInfoTest.cs) (revision f52a990475343ac20241f1657f8b7b56143881b0) @@ -95,7 +95,7 @@ var text = info.Text(stochasticSoilModelContextMock); // Assert - Assert.AreEqual(Resources.StochasticSoilProfileCollection_DisplayName, text); + Assert.AreEqual(Resources.StochasticSoilModelCollection_DisplayName, text); } [Test]