Index: src/Deltares.DSoilModel.Forms/BoringLookupControl.cs =================================================================== diff -u -r115 -r117 --- src/Deltares.DSoilModel.Forms/BoringLookupControl.cs (.../BoringLookupControl.cs) (revision 115) +++ src/Deltares.DSoilModel.Forms/BoringLookupControl.cs (.../BoringLookupControl.cs) (revision 117) @@ -1,8 +1,8 @@ using System.Windows.Forms; using Deltares.Geotechnics; -using Deltares.Geotechnics.Forms; using Deltares.Standard.Forms; using Deltares.Standard.Forms.DExpress; +using Deltares.Standard.Language; namespace Deltares.DSoilModel.Forms { @@ -14,10 +14,12 @@ { InitializeComponent(); - ((IPropertyControl)this).Name = "Boring"; + const string caption = "Boring Lookup"; + ((IPropertyControl)this).Name = LocalizationManager.GetTranslatedText(this, caption); + BindSupport.BindTextValueAndUnit(this, XLabel, XEdit, typeof(BoringLookup2D), "Xlocal"); - OffsetGroupControl.Text = "Boring Lookup"; + OffsetGroupControl.Text = caption; LocalizationSupport.RegisterAndTranslate(typeof(CPTControl), OffsetGroupControl); FormsSupport.RepairRightAnchoredControls(this); }