Index: src/Common/DelftTools.Shell.Gui/ExpandableArrayConverter.cs =================================================================== diff -u -r5fc71a385897af92ccb092f2f969b5709afab85a -r8045811eb2d3f933055693da387980f6354e3847 --- src/Common/DelftTools.Shell.Gui/ExpandableArrayConverter.cs (.../ExpandableArrayConverter.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) +++ src/Common/DelftTools.Shell.Gui/ExpandableArrayConverter.cs (.../ExpandableArrayConverter.cs) (revision 8045811eb2d3f933055693da387980f6354e3847) @@ -2,15 +2,20 @@ using System.ComponentModel; using System.Globalization; +using DelftTools.Shell.Gui.Properties; + namespace DelftTools.Shell.Gui { + /// + /// with modified conversion to string. + /// public class ExpandableArrayConverter : ArrayConverter { public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string) && value is Array) { - return string.Format("Count ({0})", ((Array) value).Length); + return string.Format(Resources.ExpandableArrayConverter_ConvertTo_Aantal_0_, ((Array) value).Length); } return base.ConvertTo(context, culture, value, destinationType);