i18n: update bundle in `idea-debugger

#KT-37483
This commit is contained in:
Dmitry Gridin
2020-03-27 16:10:37 +07:00
parent 318ca1c5e8
commit ee2d9d19c1
5 changed files with 6 additions and 8 deletions
@@ -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
@@ -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.
@@ -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(
@@ -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)
)
@@ -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,
)
}