i18n: Add bundle for idea-jvm

This commit is contained in:
Yan Zhulanow
2020-02-19 22:58:07 +09:00
committed by Dmitry Gridin
parent 40bdc099e3
commit 4cc19d3fda
25 changed files with 196 additions and 75 deletions
@@ -9,7 +9,6 @@ import com.intellij.CommonBundle
import org.jetbrains.annotations.NonNls
import org.jetbrains.annotations.PropertyKey
import org.jetbrains.kotlin.idea.core.util.KotlinBundleBase
import org.jetbrains.kotlin.idea.debugger.evaluate.KotlinDebuggerEvaluationBundle
import java.util.*
object KotlinGradleNativeBundle : KotlinBundleBase() {
@@ -20,6 +19,6 @@ object KotlinGradleNativeBundle : KotlinBundleBase() {
@JvmStatic
fun message(@NonNls @PropertyKey(resourceBundle = BUNDLE) key: String, vararg params: Any?): String {
return CommonBundle.message(KotlinDebuggerEvaluationBundle.bundle, key, *params)
return CommonBundle.message(bundle, key, *params)
}
}