Index: src/Deltares.DSoilModel.Application/Program.cs =================================================================== diff -u -r631 -r846 --- src/Deltares.DSoilModel.Application/Program.cs (.../Program.cs) (revision 631) +++ src/Deltares.DSoilModel.Application/Program.cs (.../Program.cs) (revision 846) @@ -26,6 +26,7 @@ using Deltares.Geotechnics.Forms; using Deltares.Standard; using Deltares.Standard.Forms.DExpress; +using Deltares.Standard.Language; using DevExpress.UserSkins; namespace Deltares.DSoilModel.Application @@ -48,8 +49,7 @@ var splashImage = new Bitmap(typeof(Program).Assembly.GetManifestResourceStream(splashResourceName)); var aboutImage = new Bitmap(typeof(Program).Assembly.GetManifestResourceStream(aboutResourceName)); - var mainForm = new MainForm(typeof(Program), splashImage, false, new SplashDialogWti()); - + var mainForm = new MainForm(typeof(Program), splashImage, false, new SplashDialogWti(), true, LanguageType.English); mainForm.AboutDialog = new AboutDialogWti(aboutImage); mainForm.Register(new GeometryPlugin()); Index: src/Deltares.DSoilModel.Forms.Tests/DSoilModelGeometryEditorTests.cs =================================================================== diff -u -r387 -r846 --- src/Deltares.DSoilModel.Forms.Tests/DSoilModelGeometryEditorTests.cs (.../DSoilModelGeometryEditorTests.cs) (revision 387) +++ src/Deltares.DSoilModel.Forms.Tests/DSoilModelGeometryEditorTests.cs (.../DSoilModelGeometryEditorTests.cs) (revision 846) @@ -186,7 +186,7 @@ segment.Name = emptySegment; dsmGeometryEditor.ShowSoilSegment(segment, null); // caption must be Segment + name only - Assert.AreEqual("Segment " + emptySegment, mainForm.GeometryDockPanel.Text); + Assert.AreEqual("Ondergrondsegment " + emptySegment, mainForm.GeometryDockPanel.Text); } [Test]