Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVivian Kong2009-08-18 13:59:45 +0000
committerVivian Kong2009-08-18 13:59:45 +0000
commitc10f971d21e3cf467293e2fa9a3f6f26c6f51602 (patch)
tree96ed5eeec92bbdc3be49dc600f1f7c63d609e262 /dsf-gdb/org.eclipse.cdt.dsf.gdb/plugin.xml
parent03df93edb2686e6ebbde83a1c13682792a35aa1a (diff)
downloadorg.eclipse.cdt-c10f971d21e3cf467293e2fa9a3f6f26c6f51602.tar.gz
org.eclipse.cdt-c10f971d21e3cf467293e2fa9a3f6f26c6f51602.tar.xz
org.eclipse.cdt-c10f971d21e3cf467293e2fa9a3f6f26c6f51602.zip
Bug 286888 - externalize strings in o.e.c.dsf.gdb
Diffstat (limited to 'dsf-gdb/org.eclipse.cdt.dsf.gdb/plugin.xml')
-rw-r--r--dsf-gdb/org.eclipse.cdt.dsf.gdb/plugin.xml17
1 files changed, 8 insertions, 9 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/plugin.xml b/dsf-gdb/org.eclipse.cdt.dsf.gdb/plugin.xml
index 14431d7ec88..09769001b37 100644
--- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/plugin.xml
+++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/plugin.xml
@@ -2,15 +2,14 @@
<?eclipse version="3.0"?>
<plugin>
- <!-- TODO: externalize the strings. For some reason strings from plugin.properties are not working -->
<extension point="org.eclipse.debug.core.launchDelegates">
<launchDelegate
id="org.eclipse.cdt.dsf.gdb.launch.localCLaunch"
type="org.eclipse.cdt.launch.applicationLaunchType"
modes="debug"
delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate"
- name="GDB (DSF) Create Process"
- delegateDescription="Start new application under control of GDB debugger integrated using the Debugger Services Framework (DSF)."
+ name="%launchDelegate.localApplication.name"
+ delegateDescription="%launchDelegate.localApplication.description"
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
</launchDelegate>
@@ -19,8 +18,8 @@
type="org.eclipse.cdt.launch.applicationLaunchType"
modes="debug"
delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate"
- name="GDB (DSF) Remote System Process"
- delegateDescription="Start new application on a remote system under control of GDB debugger integrated using the Debugger Services Framework (DSF)"
+ name="%launchDelegate.remoteApplication.name"
+ delegateDescription="%launchDelegate.remoteApplication.description"
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
</launchDelegate>
@@ -29,8 +28,8 @@
type="org.eclipse.cdt.launch.attachLaunchType"
modes="debug"
delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate"
- name="GDB (DSF) Attach to Process"
- delegateDescription="Attach the GDB debugger, integrated using the Debugger Services Framework (DSF), to a running program."
+ name="%launchDelegate.attach.name"
+ delegateDescription="%launchDelegate.attach.description"
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
</launchDelegate>
@@ -39,8 +38,8 @@
type="org.eclipse.cdt.launch.postmortemLaunchType"
modes="debug"
delegate="org.eclipse.cdt.dsf.gdb.launching.GdbLaunchDelegate"
- name="GDB (DSF) Postmortem Debugger"
- delegateDescription="Load an application dump under into the GDB debugger integrated using the Debugger Services Framework (DSF)."
+ name="%launchDelegate.postmortem.name"
+ delegateDescription="%launchDelegate.postmortem.description"
sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
</launchDelegate>

Back to the top