i18n: update bundle in `idea-debugger
#KT-37483
This commit is contained in:
+1
-1
@@ -6,7 +6,7 @@ alternative.sources.notification.disable=Disable
|
|||||||
|
|
||||||
function.breakpoint.tab.title=Kotlin Function Breakpoints
|
function.breakpoint.tab.title=Kotlin Function Breakpoints
|
||||||
function.breakpoint.initialize=Initialize function breakpoint
|
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.tab.title=Kotlin Line Breakpoints
|
||||||
line.breakpoint=Line breakpoint
|
line.breakpoint=Line breakpoint
|
||||||
|
|||||||
+1
-1
@@ -10,7 +10,6 @@ coroutine.dump.merge.description=Group coroutines with identical stacktrace
|
|||||||
coroutine.dump.copy.action=Copy to Clipboard
|
coroutine.dump.copy.action=Copy to Clipboard
|
||||||
coroutine.dump.copy.description=Copy whole coroutine dump to clipboard
|
coroutine.dump.copy.description=Copy whole coroutine dump to clipboard
|
||||||
coroutine.dump.failed=Coroutine dump failed, see the log
|
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.title=Full coroutine dump
|
||||||
coroutine.dump.full.copied=Full coroutine dump was successfully copied to clipboard
|
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.default.group=Default group
|
||||||
coroutine.view.fetching.error=An error occurred on fetching information
|
coroutine.view.fetching.error=An error occurred on fetching information
|
||||||
coroutine.view.fetching.not_found=No coroutine information found
|
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.
|
||||||
|
|||||||
+1
-4
@@ -273,10 +273,7 @@ class CoroutineDumpPanel(project: Project, consoleView: ConsoleView, toolbarActi
|
|||||||
).notify(myProject)
|
).notify(myProject)
|
||||||
}
|
}
|
||||||
|
|
||||||
private val group = NotificationGroup.toolWindowGroup(
|
private val group = NotificationGroup.toolWindowGroup("Analyze coroutine dump", ToolWindowId.RUN, false)
|
||||||
KotlinDebuggerCoroutinesBundle.message("coroutine.dump.copy.analyze"),
|
|
||||||
ToolWindowId.RUN, false
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private class MyToFileExporter(
|
private class MyToFileExporter(
|
||||||
|
|||||||
+2
-1
@@ -179,7 +179,8 @@ class SimpleColoredTextIconPresentationRenderer {
|
|||||||
|
|
||||||
fun renderCreationNode(infoData: CoroutineInfoData) =
|
fun renderCreationNode(infoData: CoroutineInfoData) =
|
||||||
SimpleColoredTextIcon(
|
SimpleColoredTextIcon(
|
||||||
AllIcons.Debugger.ThreadSuspended, true,
|
AllIcons.Debugger.ThreadSuspended,
|
||||||
|
true,
|
||||||
KotlinDebuggerCoroutinesBundle.message("coroutine.dump.creation.frame", infoData.key.name)
|
KotlinDebuggerCoroutinesBundle.message("coroutine.dump.creation.frame", infoData.key.name)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -159,7 +159,7 @@ class XCoroutineView(val project: Project, val session: XDebugSession) :
|
|||||||
node.addChildren(groups, true)
|
node.addChildren(groups, true)
|
||||||
} else {
|
} else {
|
||||||
node.addChildren(
|
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,
|
true,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user