MPP wizard: use more clear wording (KT-20554)

This commit is contained in:
Mikhail Glukhikh
2018-06-20 16:31:10 +03:00
parent 152327d69d
commit 7a1cf5704e
@@ -42,8 +42,8 @@ class KotlinGradleMultiplatformWizardStep(
private val hierarchyKindComponent = ComboBox( private val hierarchyKindComponent = ComboBox(
arrayOf( arrayOf(
"Root with common & platform children", "Flat, all created modules on the same level",
"Root with common child & platform grand-children" "Hierarchical, platform modules under common one"
), 400 ), 400
) )
private val rootModuleNameComponent = JTextField() private val rootModuleNameComponent = JTextField()
@@ -113,7 +113,7 @@ class KotlinGradleMultiplatformWizardStep(
} }
this.panel = panel(LCFlags.fillY) { this.panel = panel(LCFlags.fillY) {
row("Hierarchy kind:") { hierarchyKindComponent() } row("Project structure:") { hierarchyKindComponent() }
row("Root module name:") { rootModuleNameComponent() } row("Root module name:") { rootModuleNameComponent() }
row("Common module name:") { commonModuleNameComponent() } row("Common module name:") { commonModuleNameComponent() }
row("Create JVM module:") { jvmCheckBox() } row("Create JVM module:") { jvmCheckBox() }