JPanel textPanel = new JPanel(new IzPanelLayout());
textPanel.setBorder(new EmptyBorder(5, 5, 5, 5));
VariableSubstitutor vs = new VariableSubstitutor(idata.getVariables());
JLabel textLabel = new JLabel(vs.substituteMultiple(parent.langpack.getString(WELCOME_TEXT_RESOURCE), null));
textPanel.add(textLabel);
if (imagePanel != null) {
add(imagePanel, LayoutConstants.NEXT_COLUMN);
}