Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Fix for 71033


Here's a patch to externalize a couple strings in the Workbench preferences->Keys->C/C++ source page.
To go to Head and 2.0 branch.
Thanks,
Tanya


Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/ChangeLog,v
retrieving revision 1.532
diff -u -r1.532 ChangeLog
--- ChangeLog	30 Jul 2004 19:11:25 -0000	1.532
+++ ChangeLog	3 Aug 2004 21:39:51 -0000
@@ -1,3 +1,9 @@
+2004-08-03 Tanya Wolff
+
+	Fix for 71033: English "Find Refs" in Workbench Key preferences.
+	*plugin.properties
+	*plugin.xml
+	
 2004-07-30 Alain Magloire
 
 	Implementation of "Add Include" add the using directive.
Index: plugin.properties
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/plugin.properties,v
retrieving revision 1.57
diff -u -r1.57 plugin.properties
--- plugin.properties	26 Jul 2004 20:52:26 -0000	1.57
+++ plugin.properties	3 Aug 2004 21:39:51 -0000
@@ -78,6 +78,12 @@
 ActionDefinition.opencview.name= Show in C/C++ Project view
 ActionDefinition.opencview.description= Show the selected resource in the C/C++ Project view
 
+ActionDefinition.finddecl.name= Find Declaration
+ActionDefinition.finddecl.description= Find Declaration
+
+ActionDefinition.findrefs.name= Find References
+ActionDefinition.findrefs.description= Find References
+
 CEditor.name=C/C++ Editor
 CPluginPreferencePage.name=C/C++
 CPluginEditorPreferencePage.name=Editor
Index: plugin.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.ui/plugin.xml,v
retrieving revision 1.108
diff -u -r1.108 plugin.xml
--- plugin.xml	26 Jul 2004 20:52:26 -0000	1.108
+++ plugin.xml	3 Aug 2004 21:39:52 -0000
@@ -624,14 +624,14 @@
             id="org.eclipse.cdt.ui.edit.opencview">
       </command>
       <command
-            description="Find Declaration"
+            description="%ActionDefinition.finddecl.description"
             category="org.eclipse.cdt.ui.category.source"
-            name="Find Declaration"
+            name="%ActionDefinition.finddecl.name"
             id="org.eclipse.cdt.ui.search.finddecl"/>
       <command
             category="org.eclipse.cdt.ui.category.source"
-            description="Find Refs"
-            name="Find Refs"
+            description="%ActionDefinition.findrefs.description"
+            name="%ActionDefinition.findrefs.name"
             id="org.eclipse.cdt.ui.search.findrefs"/>
       <keyBinding
             command="org.eclipse.cdt.ui.search.findrefs"

Back to the top