mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[kotlin] KotlinBasePluginBundle proofreading
GitOrigin-RevId: f78ad69a0ba01f615a8e6cee0a1a476b2ed7f5df
This commit is contained in:
committed by
intellij-monorepo-bot
parent
c309f3ef78
commit
022037f44d
@@ -1,11 +1,11 @@
|
||||
progress.text.downloading.kotlinc.dist=Downloading kotlinc-dist?
|
||||
progress.text.downloading.kotlinc.dist=Downloading kotlinc-dist\u2026
|
||||
failed.to.download.unbundled.jps.maven.artifact=Failed to download Kotlin Compiler Maven artifact ({0}). \
|
||||
The search was performed in the following repos:<br>{1}
|
||||
suggested.solutions=Suggested solutions:<br>{0}
|
||||
you.can.use.kotlin.compiler.which.is.bundled.into.your.ide=You can use Kotlin compiler which is bundled into your IDE. \
|
||||
you.can.use.kotlin.compiler.which.is.bundled.into.your.ide=You can use Kotlin compiler, which is bundled into your IDE. \
|
||||
Select 'Bundled' version in 'File | Settings | Build, Execution, Deployment | Compiler | Kotlin Compiler | Kotlin Compiler version'
|
||||
|
||||
progress.text.downloading.kotlin.jps.plugin=Downloading Kotlin JPS plugin...
|
||||
progress.text.downloading.kotlin.jps.plugin=Downloading Kotlin JPS plugin\u2026
|
||||
failed.to.parse.kotlin.version.0.from.1=Failed to parse Kotlin version ({0}) from ''{1}''
|
||||
failed.to.parse.kotlin.version.0=Failed to parse Kotlin version ({0})
|
||||
kotlin.jps.compiler.minimum.supported.version.not.satisfied=Kotlin JPS compiler minimum supported version is ''{0}'' but ''{1}'' is specified
|
||||
@@ -18,7 +18,7 @@ configuration.feature.text.new.java.to.kotlin.converter=New Java to Kotlin Conve
|
||||
|
||||
kotlin.plugin.kind.k1=K1 Kotlin Mode
|
||||
kotlin.plugin.kind.k2=K2 Kotlin Mode (Alpha)
|
||||
kotlin.plugin.kind.text=Kotlin Plugin: {0}
|
||||
kotlin.plugin.kind.text=Kotlin plugin: {0}
|
||||
|
||||
kotlin.analyzer.version.0=Kotlin analyzer version: {0}
|
||||
reporter.text.can.t.report.exception.from.patched.plugin=Can't report exception from patched plugin
|
||||
+1
-2
@@ -6,8 +6,7 @@ import com.intellij.openapi.util.NlsContexts.DetailedDescription
|
||||
|
||||
internal class KotlinPluginKindAboutPopupDescriptionProvider : AboutPopupDescriptionProvider {
|
||||
override fun getDescription(): @DetailedDescription String? {
|
||||
val pluginKind = KotlinPluginModeProvider.currentPluginMode
|
||||
return when (pluginKind) {
|
||||
return when (val pluginKind = KotlinPluginModeProvider.currentPluginMode) {
|
||||
KotlinPluginMode.K2 -> {
|
||||
KotlinBasePluginBundle.message("kotlin.plugin.kind.text", pluginKind.getPluginModeDescription())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user