JPanel sp = new JPanel (new BorderLayout());
JLabel shapeTitle = new JLabel(resources.getStringValue("shape"));
shapeTitle.setFont(new Font("Dialog", Font.PLAIN,18));
sp.add(shapeTitle, BorderLayout.NORTH);
svgShapeProperties = new SvgShapePropertiesPanel(shapeName);
sp.add(svgShapeProperties, BorderLayout.CENTER);
plotPane.addTab(resources.getStringValue("shape"), sp);