IDEA-142866 Gradle: misleading message is shown on "Ignore Gradle Project" action

This commit is contained in:
Vladislav.Soroka
2015-07-22 18:53:59 +03:00
parent 0e437776e4
commit 1799d65637
2 changed files with 6 additions and 1 deletions
@@ -2,7 +2,7 @@
import.title=Import {0} Projects
module.type.title={0} Module
module.type.description={0} modules are used for developing <b>JVM-based</b> applications with dependencies managed by <b>{0}</b>
orphan.modules.text=<html>The modules below are not backed by {0} anymore.<br/>Check those to be removed from the ide project too:
orphan.modules.text=<html>The modules below are not imported from {0} anymore.<br/>Check those to be removed from the ide project too:
# Settings.
setting.type.location.deduced={0} location is deduced
@@ -356,6 +356,11 @@ public class ModuleDataService extends AbstractProjectDataService<ModuleData, Mo
protected JComponent createCenterPanel() {
return new JBScrollPane(content);
}
@NotNull
protected Action[] createActions() {
return new Action[]{getOKAction()};
}
};
dialog.showAndGet();