Wizard: fix texts
This commit is contained in:
+2
-2
@@ -8,8 +8,8 @@ additional.buildsystem.settings.project.jdk=Project JDK
|
|||||||
additional.buildsystem.settings.artifact.coordinates=Artifact Coordinates
|
additional.buildsystem.settings.artifact.coordinates=Artifact Coordinates
|
||||||
|
|
||||||
module.dependencies.module.dependencies=Module dependencies
|
module.dependencies.module.dependencies=Module dependencies
|
||||||
module.dependencies.add.module.dependency=Add Module Dependency
|
module.dependencies.add.module.dependency=Add a module Dependency
|
||||||
module.dependencies.remove.module.dependency=Remove Module Dependency
|
module.dependencies.remove.module.dependency=Remove a module Dependency
|
||||||
|
|
||||||
editor.modules.add=Add {0}
|
editor.modules.add=Add {0}
|
||||||
editor.modules.remove.selected.module=Do you want to remove {0} module with all submodules?
|
editor.modules.remove.selected.module=Do you want to remove {0} module with all submodules?
|
||||||
|
|||||||
+6
-6
@@ -4,9 +4,9 @@ buildsystem.type.intellij=IntelliJ
|
|||||||
buildsystem.type.intellij.full=IntelliJ build system
|
buildsystem.type.intellij.full=IntelliJ build system
|
||||||
buildsystem.type.maven=Maven
|
buildsystem.type.maven=Maven
|
||||||
|
|
||||||
error.template.not.found=Template with an id {0} is not found
|
error.template.not.found=Template with the id {0} is not found
|
||||||
error.required.settings.are.not.present=The following required settings is not present
|
error.required.settings.are.not.present=The following required settings are not configured
|
||||||
error.configurator.not.found=Module type {0} was not found
|
error.configurator.not.found=Module type {0} is not found
|
||||||
error.invalid.module.dependency=Invalid module dependency from module {0} to {1}
|
error.invalid.module.dependency=Invalid module dependency from module {0} to {1}
|
||||||
|
|
||||||
module.configuration.group.android.native=Android Native
|
module.configuration.group.android.native=Android Native
|
||||||
@@ -53,7 +53,7 @@ validation.identifier={0} should consist only of letters, digits{1}
|
|||||||
validation.identifier.additional.symbols=, and symbols: {0}
|
validation.identifier.additional.symbols=, and symbols: {0}
|
||||||
validation.file.should.exists=File for {0} should exists
|
validation.file.should.exists=File for {0} should exists
|
||||||
|
|
||||||
version.error.bad.format=Bad version format for setting {0}
|
version.error.bad.format=Incorrect version format for setting {0}
|
||||||
parse.error.no.value.for.key=No value was found for a key {0}
|
parse.error.no.value.for.key=No value was found for a key {0}
|
||||||
|
|
||||||
module.type.jvm=Kotlin/JVM
|
module.type.jvm=Kotlin/JVM
|
||||||
@@ -141,9 +141,9 @@ module.template.js.simple.description=Configurable Kotlin/JS frontend applicatio
|
|||||||
module.template.js.simple.run.configuration.dev=BrowserDevelopmentRun in continuous mode
|
module.template.js.simple.run.configuration.dev=BrowserDevelopmentRun in continuous mode
|
||||||
module.template.js.simple.run.configuration.prod=BrowserProductionRun in continuous mode
|
module.template.js.simple.run.configuration.prod=BrowserProductionRun in continuous mode
|
||||||
module.template.js.simple.setting.rendering.engine=Rendering engine
|
module.template.js.simple.setting.rendering.engine=Rendering engine
|
||||||
module.template.js.simple.setting.rendering.kotlinx.html=Use statically typed Kotlinx.html DSL
|
module.template.js.simple.setting.rendering.kotlinx.html=Use statically-typed Kotlinx.html DSL
|
||||||
module.template.js.simple.setting.rendering.react=Use Kotlin-wrapped React library
|
module.template.js.simple.setting.rendering.react=Use Kotlin-wrapped React library
|
||||||
module.template.js.simple.setting.rendering.react.styled=Use Kotlin-wrapped React framework together with Styled Components
|
module.template.js.simple.setting.rendering.react.styled=Use Kotlin-wrapped React framework with Styled Components
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -64,7 +64,7 @@ class Module(
|
|||||||
override val text: String get() = name
|
override val text: String get() = name
|
||||||
override val greyText: String?
|
override val greyText: String?
|
||||||
get() = when {
|
get() = when {
|
||||||
kind == ModuleKind.target -> configurator.text + KotlinNewProjectWizardBundle.message("module.kind.target")
|
kind == ModuleKind.target -> configurator.text + " " + KotlinNewProjectWizardBundle.message("module.kind.target")
|
||||||
configurator == MppModuleConfigurator -> KotlinNewProjectWizardBundle.message("module.kind.mpp.module")
|
configurator == MppModuleConfigurator -> KotlinNewProjectWizardBundle.message("module.kind.mpp.module")
|
||||||
configurator == AndroidSinglePlatformModuleConfigurator -> KotlinNewProjectWizardBundle.message("module.kind.android.module")
|
configurator == AndroidSinglePlatformModuleConfigurator -> KotlinNewProjectWizardBundle.message("module.kind.android.module")
|
||||||
configurator == IOSSinglePlatformModuleConfigurator -> KotlinNewProjectWizardBundle.message("module.kind.ios.module")
|
configurator == IOSSinglePlatformModuleConfigurator -> KotlinNewProjectWizardBundle.message("module.kind.ios.module")
|
||||||
|
|||||||
Reference in New Issue
Block a user