diff --git a/idea/resources-en/messages/KotlinBundle.properties b/idea/resources-en/messages/KotlinBundle.properties index e05b7a4dc96..3c6de8b1317 100644 --- a/idea/resources-en/messages/KotlinBundle.properties +++ b/idea/resources-en/messages/KotlinBundle.properties @@ -732,8 +732,8 @@ configuration.text.patched.original={0} (Patched! Original: {1}) configuration.text.the.compiler.bundled.to.kotlin.plugin=The compiler bundled to Kotlin plugin ({0}) is older than external compiler used for building modules: configuration.text.this.may.cause.different.set.of.errors.and.warnings.reported.in.ide.p=This may cause different set of errors and warnings reported in IDE. configuration.title.choose.output.directory=Choose Output Directory -configuration.title.early.access.preview.1.3.x=Early Access Preview 1.3.x configuration.title.early.access.preview.1.4.x=Early Access Preview 1.4.x +configuration.title.early.access.preview.1.5.x=Early Access Preview 1.5.x configuration.title.edit.exclusion=Edit exclusion configuration.title.kotlin.compiler.js.option.output.postfix.browse.title=Choose file to append to generated code configuration.title.kotlin.compiler.js.option.output.prefix.browse.title=Choose file to prepend to generated code diff --git a/idea/src/org/jetbrains/kotlin/idea/configuration/KotlinLanguageConfiguration.kt b/idea/src/org/jetbrains/kotlin/idea/configuration/KotlinLanguageConfiguration.kt index 9094732c011..b95cbcdeeab 100644 --- a/idea/src/org/jetbrains/kotlin/idea/configuration/KotlinLanguageConfiguration.kt +++ b/idea/src/org/jetbrains/kotlin/idea/configuration/KotlinLanguageConfiguration.kt @@ -38,11 +38,11 @@ class KotlinLanguageConfiguration : SearchableConfigurable, Configurable.NoScrol STABLE(null, KotlinBundle.message("configuration.title.stable")), EAP( "https://plugins.jetbrains.com/plugins/eap/${KotlinPluginUtil.KOTLIN_PLUGIN_ID.idString}", - KotlinBundle.message("configuration.title.early.access.preview.1.3.x") + KotlinBundle.message("configuration.title.early.access.preview.1.4.x") ), EAP_NEXT( "https://plugins.jetbrains.com/plugins/eap-next/${KotlinPluginUtil.KOTLIN_PLUGIN_ID.idString}", - KotlinBundle.message("configuration.title.early.access.preview.1.4.x") + KotlinBundle.message("configuration.title.early.access.preview.1.5.x") ); fun isInHosts(): Boolean {