Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
authorVivian Kong2010-05-04 18:42:19 +0000
committerVivian Kong2010-05-04 18:42:19 +0000
commit001dc097d90b81acb6abdc25ffd9101456cee611 (patch)
tree5e4995e36460e3519dcc4194b85aec1c9a20fbe9 /debug
parent45bb4086d03051ed179ebb7d6affa447f2ed5cf6 (diff)
downloadorg.eclipse.cdt-001dc097d90b81acb6abdc25ffd9101456cee611.tar.gz
org.eclipse.cdt-001dc097d90b81acb6abdc25ffd9101456cee611.tar.xz
org.eclipse.cdt-001dc097d90b81acb6abdc25ffd9101456cee611.zip
Bug 311591 - externalize strings for debug activities
Diffstat (limited to 'debug')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.ui/plugin.properties7
-rw-r--r--debug/org.eclipse.cdt.debug.mi.ui/plugin.xml8
-rw-r--r--debug/org.eclipse.cdt.debug.ui/plugin.properties7
-rw-r--r--debug/org.eclipse.cdt.debug.ui/plugin.xml8
4 files changed, 20 insertions, 10 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.ui/plugin.properties b/debug/org.eclipse.cdt.debug.mi.ui/plugin.properties
index 00d91b7edcf..55bd62cbcfd 100644
--- a/debug/org.eclipse.cdt.debug.mi.ui/plugin.properties
+++ b/debug/org.eclipse.cdt.debug.mi.ui/plugin.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2009 QNX Software Systems and others.
+# Copyright (c) 2000, 2010 QNX Software Systems and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@@ -21,3 +21,8 @@ TargetOptionsPage.label=GDB/MI Options
VerboseMode.label=Verbose Mode
VerboseMode.tooltip=Verbose Mode For gdb Console
+
+category.description = C/C++ debugging with the CDI (legacy) GDB debugger
+category.name = CDT CDI-GDB - GDB Debugging (Legacy)
+activity.description = C/C++ debugging with the CDI (legacy) GDB debugger
+activity.name = CDT CDI-GDB - GDB Debugging (Legacy) \ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.mi.ui/plugin.xml b/debug/org.eclipse.cdt.debug.mi.ui/plugin.xml
index 4d41d97d58d..f8a1a277081 100644
--- a/debug/org.eclipse.cdt.debug.mi.ui/plugin.xml
+++ b/debug/org.eclipse.cdt.debug.mi.ui/plugin.xml
@@ -88,8 +88,8 @@
point="org.eclipse.ui.activities">
<category
- name="CDT CDI-GDB - GDB Debugging (Legacy)"
- description="C/C++ debugging with the CDI (legacy) GDB debugger"
+ name="%category.name"
+ description="%category.description"
id="org.eclipse.cdt.debug.cdigdbCategory">
</category>
@@ -99,8 +99,8 @@
</categoryActivityBinding>
<activity
- name="CDT CDI-GDB - GDB Debugging (Legacy)"
- description="C/C++ debugging with the CDI (legacy) GDB debugger"
+ name="%activity.name"
+ description="%activity.description"
id="org.eclipse.cdt.debug.cdigdbActivity">
</activity>
diff --git a/debug/org.eclipse.cdt.debug.ui/plugin.properties b/debug/org.eclipse.cdt.debug.ui/plugin.properties
index 5fba69e1041..ae575feb60a 100644
--- a/debug/org.eclipse.cdt.debug.ui/plugin.properties
+++ b/debug/org.eclipse.cdt.debug.ui/plugin.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2009 QNX Software Systems and others.
+# Copyright (c) 2000, 2010 QNX Software Systems and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@@ -246,3 +246,8 @@ sourceNotFoundEditor.name = C/C++ Source Not Found Editor
displayMode.name = displayMode
CastingCategory.description = Set of commands for displaying variables and expressions as other types or arrays.
CastingCategory.name = Cast to Type or Array
+
+category.description = Commands for C/C++ debugging
+category.name = CDT Debug - C/C++ Development Tools
+activity.description = Commands for C/C++ debugging
+activity.name = CDT Debug - C/C++ Development Tools \ No newline at end of file
diff --git a/debug/org.eclipse.cdt.debug.ui/plugin.xml b/debug/org.eclipse.cdt.debug.ui/plugin.xml
index 1ee1f7d9635..31c00afc9e8 100644
--- a/debug/org.eclipse.cdt.debug.ui/plugin.xml
+++ b/debug/org.eclipse.cdt.debug.ui/plugin.xml
@@ -2388,8 +2388,8 @@
point="org.eclipse.ui.activities">
<category
- name="CDT Debug - C/C++ Development Tools"
- description="Commands for C/C++ debugging"
+ name="%category.name"
+ description="%category.description"
id="org.eclipse.cdt.debug.ui.cdtCategory">
</category>
@@ -2399,8 +2399,8 @@
</categoryActivityBinding>
<activity
- name="CDT Debug - C/C++ Development Tools"
- description="Commands for C/C++ debugging"
+ name="%activity.name"
+ description="%activity.description"
id="org.eclipse.cdt.debug.ui.cdtActivity">
</activity>

Back to the top