1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-19 15:05:36 +02:00

Bug 286888 - externalize strings in o.e.c.dsf.gdb

This commit is contained in:
Vivian Kong 2009-08-18 13:59:45 +00:00
parent 03df93edb2
commit c10f971d21
2 changed files with 11 additions and 10 deletions

View file

@ -15,6 +15,8 @@ providerName=Eclipse CDT
launchDelegate.localApplication.name=GDB (DSF) Create Process launchDelegate.localApplication.name=GDB (DSF) Create Process
launchDelegate.localApplication.description=Start new application under control of GDB debugger integrated using the Debugger Services Framework (DSF). launchDelegate.localApplication.description=Start new application under control of GDB debugger integrated using the Debugger Services Framework (DSF).
launchDelegate.remoteApplication.name=GDB (DSF) Remote System Process launchDelegate.remoteApplication.name=GDB (DSF) Remote System Process
launchDelegate.remoteApplication.description=Start new application on a remote system under control of GDB debugger integrated using the Debugger Services Framework (DSF) launchDelegate.remoteApplication.description=Start new application on a remote system under control of GDB debugger integrated using the Debugger Services Framework (DSF).
launchDelegate.attach.name=GDB (DSF) Attach to Process launchDelegate.attach.name=GDB (DSF) Attach to Process
launchDelegate.attach.description=Attach the GDB debugger, integrated using the Debugger Services Framework (DSF), to a running program. launchDelegate.attach.description=Attach the GDB debugger, integrated using the Debugger Services Framework (DSF), to a running program.
launchDelegate.postmortem.name=GDB (DSF) Postmortem Debugger
launchDelegate.postmortem.description=Load an application dump under into the GDB debugger integrated using the Debugger Services Framework (DSF).

View file

@ -2,15 +2,14 @@
<?eclipse version="3.0"?> <?eclipse version="3.0"?>
<plugin> <plugin>
<!-- TODO: externalize the strings. For some reason strings from plugin.properties are not working -->
<extension point="org.eclipse.debug.core.launchDelegates"> <extension point="org.eclipse.debug.core.launchDelegates">
<launchDelegate <launchDelegate
id="org.eclipse.cdt.dsf.gdb.launch.localCLaunch" id="org.eclipse.cdt.dsf.gdb.launch.localCLaunch"
type="org.eclipse.cdt.launch.applicationLaunchType" type="org.eclipse.cdt.launch.applicationLaunchType"
modes="debug" modes="debug"
delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate" delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate"
name="GDB (DSF) Create Process" name="%launchDelegate.localApplication.name"
delegateDescription="Start new application under control of GDB debugger integrated using the Debugger Services Framework (DSF)." delegateDescription="%launchDelegate.localApplication.description"
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator" sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer"> sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
</launchDelegate> </launchDelegate>
@ -19,8 +18,8 @@
type="org.eclipse.cdt.launch.applicationLaunchType" type="org.eclipse.cdt.launch.applicationLaunchType"
modes="debug" modes="debug"
delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate" delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate"
name="GDB (DSF) Remote System Process" name="%launchDelegate.remoteApplication.name"
delegateDescription="Start new application on a remote system under control of GDB debugger integrated using the Debugger Services Framework (DSF)" delegateDescription="%launchDelegate.remoteApplication.description"
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator" sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer"> sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
</launchDelegate> </launchDelegate>
@ -29,8 +28,8 @@
type="org.eclipse.cdt.launch.attachLaunchType" type="org.eclipse.cdt.launch.attachLaunchType"
modes="debug" modes="debug"
delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate" delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate"
name="GDB (DSF) Attach to Process" name="%launchDelegate.attach.name"
delegateDescription="Attach the GDB debugger, integrated using the Debugger Services Framework (DSF), to a running program." delegateDescription="%launchDelegate.attach.description"
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator" sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer"> sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
</launchDelegate> </launchDelegate>
@ -39,8 +38,8 @@
type="org.eclipse.cdt.launch.postmortemLaunchType" type="org.eclipse.cdt.launch.postmortemLaunchType"
modes="debug" modes="debug"
delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate" delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate"
name="GDB (DSF) Postmortem Debugger" name="%launchDelegate.postmortem.name"
delegateDescription="Load an application dump under into the GDB debugger integrated using the Debugger Services Framework (DSF)." delegateDescription="%launchDelegate.postmortem.description"
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator" sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer"> sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
</launchDelegate> </launchDelegate>