public MappingMessage(String title, String message, boolean autoMap) {
this.title = title;
JLabel label = createLabel(message, autoMap);
Icon icon = AlertIcons.INFO;
doNotShowAgain = new KongaCheckBox(ApplicationResources.STRINGS.getString("DoNotShowAgain"));
doNotShowAgain.setBorder(Empty.border(24, 0, 0, 0));
layout = new TwoColumnPanel();
layout.setInsets(0, 8, 0, 0);
layout.addRow(new JLabel(icon), label);
layout.addRow(null, doNotShowAgain);