Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Plugin/HeightStructuresPlugin.cs =================================================================== diff -u -r8d0be9ae76a8444db63f3eeccf2c31399a0d0424 -rfbf9eca188c20c352a702ee20c183e5dc3c7acf1 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Plugin/HeightStructuresPlugin.cs (.../HeightStructuresPlugin.cs) (revision 8d0be9ae76a8444db63f3eeccf2c31399a0d0424) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Plugin/HeightStructuresPlugin.cs (.../HeightStructuresPlugin.cs) (revision fbf9eca188c20c352a702ee20c183e5dc3c7acf1) @@ -64,10 +64,10 @@ { yield return new ImportInfo() { - Name = HeightStructuresFormsResources.HeightStructureCollection_DisplayName, + Name = RingtoetsCommonFormsResources.StructuresCollection_DisplayName, Category = RingtoetsCommonFormsResources.Ringtoets_Category, FileFilter = string.Format("{0} {1}", - HeightStructuresFormsResources.HeightStructureCollection_DisplayName, + RingtoetsCommonFormsResources.StructuresCollection_DisplayName, RingtoetsCommonFormsResources.DataTypeDisplayName_csv_file_filter), IsEnabled = context => context.AssessmentSection.ReferenceLine != null //TODO: WTI-579 Hook this up with the importer @@ -139,7 +139,7 @@ yield return new TreeNodeInfo { - Text = context => HeightStructuresFormsResources.HeightStructureCollection_DisplayName, + Text = context => RingtoetsCommonFormsResources.StructuresCollection_DisplayName, Image = context => RingtoetsCommonFormsResources.GeneralFolderIcon, ForeColor = context => context.WrappedData.Any() ? Color.FromKnownColor(KnownColor.ControlText) : Color.FromKnownColor(KnownColor.GrayText), ChildNodeObjects = context => context.WrappedData.Cast().ToArray(),