Alert.info(getString("RequiredPluginsView.Check.Ok"),
getString("RequiredPluginsView.Check.Ok.Title"));
} else {
String title = getString("RequiredPluginsView.Problem.Title");
String caption = getString("RequiredPluginsView.Problem.Caption");
Type type = isFatal() ? Type.ERROR : Type.WARNING;
BorderLayoutBuilder layout = new BorderLayoutBuilder(10, 0);
JLabel icon = new JLabel(type.getIcon());
icon.setVerticalAlignment(SwingConstants.TOP);
layout.west(icon);
layout.center(new AvailabilityResultTable(caption, getTableModel()));
UiProviderDialogDisplayer.display(ApplicationUi.getAppWinFrame(), layout, title, KongaDialog.OK_ONLY,
CheckAvailabilityJob.class);