IDEA-249454 Internalization for "java-decompiler"

GitOrigin-RevId: f1b5e77587752704f2cfa19d7d373e66a5638a37
This commit is contained in:
Egor Ushakov
2020-09-02 18:57:30 +03:00
committed by intellij-monorepo-bot
parent 82ef437832
commit 76a9e69dd4

View File

@@ -1,13 +1,14 @@
// Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.java.decompiler
import com.intellij.DynamicBundle
import org.jetbrains.annotations.Nls
import org.jetbrains.annotations.PropertyKey
private const val BUNDLE = "messages.Decompiler"
object IdeaDecompilerBundle : DynamicBundle(BUNDLE) {
@JvmStatic
@JvmStatic @Nls
fun message(@PropertyKey(resourceBundle = BUNDLE) key: String, vararg params: Any): String = getMessage(key, *params)
@JvmStatic