Thinking about integrating an editable list into the iconset maker app, for adding description names and categories.
When adding a description, they appear like this
copyit = internal name
foo = description
whereas inbuilt sets appear as you would expect
Here is the line of XML that is being used
xmlArray.push('<icon name="' + pngArray[i] + '"\t display_name="foo"' + '\t category="foo"' + '\t row="' + row +'" col="' + col + '" />');
seems to be okay, not sure why the internal name is in brackets after the description name ?

