diff --git a/idea/jvm-debugger/jvm-debugger-core/resources/messages/KotlinDebuggerCoreBundle.properties b/idea/jvm-debugger/jvm-debugger-core/resources/messages/KotlinDebuggerCoreBundle.properties index 62af6cf63c0..1a0f18ea494 100644 --- a/idea/jvm-debugger/jvm-debugger-core/resources/messages/KotlinDebuggerCoreBundle.properties +++ b/idea/jvm-debugger/jvm-debugger-core/resources/messages/KotlinDebuggerCoreBundle.properties @@ -6,7 +6,7 @@ alternative.sources.notification.disable=Disable function.breakpoint.tab.title=Kotlin Function Breakpoints function.breakpoint.initialize=Initialize function breakpoint -function.breakpoint.cancel.emulation=Cancel emulation +function.breakpoint.cancel.emulation=Cancel Emulation line.breakpoint.tab.title=Kotlin Line Breakpoints line.breakpoint=Line breakpoint diff --git a/idea/jvm-debugger/jvm-debugger-coroutine/resources/messages/KotlinDebuggerCoroutinesBundle.properties b/idea/jvm-debugger/jvm-debugger-coroutine/resources/messages/KotlinDebuggerCoroutinesBundle.properties index 973c94ce327..ebeff96a218 100644 --- a/idea/jvm-debugger/jvm-debugger-coroutine/resources/messages/KotlinDebuggerCoroutinesBundle.properties +++ b/idea/jvm-debugger/jvm-debugger-coroutine/resources/messages/KotlinDebuggerCoroutinesBundle.properties @@ -10,7 +10,6 @@ coroutine.dump.merge.description=Group coroutines with identical stacktrace coroutine.dump.copy.action=Copy to Clipboard coroutine.dump.copy.description=Copy whole coroutine dump to clipboard coroutine.dump.failed=Coroutine dump failed, see the log -coroutine.dump.copy.analyze=Analyze coroutine dump coroutine.dump.full.title=Full coroutine dump coroutine.dump.full.copied=Full coroutine dump was successfully copied to clipboard @@ -24,3 +23,4 @@ coroutine.view.title=Coroutines coroutine.view.default.group=Default group coroutine.view.fetching.error=An error occurred on fetching information coroutine.view.fetching.not_found=No coroutine information found +to.enable.information.breakpoint.suspend.policy.should.be.set.to.all.threads=To enable information breakpoint suspend policy should be set to 'All' threads. diff --git a/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/CoroutineDumpPanel.kt b/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/CoroutineDumpPanel.kt index 359690212b7..bd802b5fad4 100644 --- a/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/CoroutineDumpPanel.kt +++ b/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/CoroutineDumpPanel.kt @@ -273,10 +273,7 @@ class CoroutineDumpPanel(project: Project, consoleView: ConsoleView, toolbarActi ).notify(myProject) } - private val group = NotificationGroup.toolWindowGroup( - KotlinDebuggerCoroutinesBundle.message("coroutine.dump.copy.analyze"), - ToolWindowId.RUN, false - ) + private val group = NotificationGroup.toolWindowGroup("Analyze coroutine dump", ToolWindowId.RUN, false) } private class MyToFileExporter( diff --git a/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/SimpleColoredTextIcon.kt b/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/SimpleColoredTextIcon.kt index 9b354bf433f..7469e98f4ef 100644 --- a/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/SimpleColoredTextIcon.kt +++ b/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/SimpleColoredTextIcon.kt @@ -179,7 +179,8 @@ class SimpleColoredTextIconPresentationRenderer { fun renderCreationNode(infoData: CoroutineInfoData) = SimpleColoredTextIcon( - AllIcons.Debugger.ThreadSuspended, true, + AllIcons.Debugger.ThreadSuspended, + true, KotlinDebuggerCoroutinesBundle.message("coroutine.dump.creation.frame", infoData.key.name) ) diff --git a/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/XCoroutineView.kt b/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/XCoroutineView.kt index 2fcb82bfd3f..345ec8cabf7 100644 --- a/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/XCoroutineView.kt +++ b/idea/jvm-debugger/jvm-debugger-coroutine/src/org/jetbrains/kotlin/idea/debugger/coroutine/view/XCoroutineView.kt @@ -159,7 +159,7 @@ class XCoroutineView(val project: Project, val session: XDebugSession) : node.addChildren(groups, true) } else { node.addChildren( - XValueChildrenList.singleton(ErrorNode("To enable information breakpoint suspend policy should be set to 'All' threads.")), + XValueChildrenList.singleton(ErrorNode("to.enable.information.breakpoint.suspend.policy.should.be.set.to.all.threads")), true, ) }