mainFrame.about();
}
});
JMenuItem updateItem = newJMenuItem("menu.check_for_updates", "Check for Updates...");
UpdateChecker checker = DetectorFactoryCollection.instance().getUpdateChecker();
boolean disabled = checker.updateChecksGloballyDisabled();
updateItem.setEnabled(!disabled);
if (disabled) {
updateItem.setToolTipText("Update checks disabled by plugin: "
+ checker.getPluginThatDisabledUpdateChecks());
}
helpMenu.add(updateItem);
updateItem.addActionListener(new ActionListener() {
@Override