[debugger] fixed i18n

GitOrigin-RevId: 33bc98178de08b0f4f852f218b563a207f101090
This commit is contained in:
Egor Ushakov
2025-02-19 12:31:01 +01:00
committed by intellij-monorepo-bot
parent 6271aad1ad
commit 6056d4bb71
2 changed files with 2 additions and 1 deletions

View File

@@ -354,3 +354,4 @@ xdebugger.intention.control.exception.breakpoint.enable.text=Enable exception br
xdebugger.intention.control.exception.breakpoint.disable.text=Disable exception breakpoint on {0}
xdebugger.execution.stack.description.not.available.message=Description is not available
plugin.is.not.unload.safe.because.of.the.started.debug.session=Plugin is not unload-safe because of the started debug session

View File

@@ -613,7 +613,7 @@ public final class XDebuggerManagerImpl extends XDebuggerManager implements Pers
for (XDebugSession session : sessions) {
XDebugProcess process = session.getDebugProcess();
if (process.dependsOnPlugin(pluginDescriptor)) {
return "Plugin is not unload-safe because of the started debug session";
return XDebuggerBundle.message("plugin.is.not.unload.safe.because.of.the.started.debug.session");
}
}
}