Skip to main content

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


Here's a fix to externalize "Assembly" in File Types properties/ Language column. Some countries like to translate this as "Assembly Language" or "Assembler Language".

For Head and 2.0 branch.
Thanks,

Tanya


Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/ChangeLog,v
retrieving revision 1.371
diff -u -r1.371 ChangeLog
--- ChangeLog	26 Jul 2004 18:08:07 -0000	1.371
+++ ChangeLog	28 Jul 2004 13:56:05 -0000
@@ -1,7 +1,8 @@
-2004-07-26 Alain Magloire
+2004-07-28 Tanya Wolff
 
-	Fix for PR 68665
-	* utils/org/eclipse/cdt/utils/coff/PE.java
+	Fix for PR 70161: Assembly untranslated in C++ File Types
+	* plugin.properties
+	* plugin.xml
 
 2004-07-26 Vladimir Hirsl
 
Index: plugin.properties
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/plugin.properties,v
retrieving revision 1.24
diff -u -r1.24 plugin.properties
--- plugin.properties	16 Jul 2004 18:03:28 -0000	1.24
+++ plugin.properties	28 Jul 2004 13:56:05 -0000
@@ -41,6 +41,7 @@
 
 PathEntryContainerInitializer=Path Entry Container Initializer
 
+fileTypeMapping.AssemblyLanguage=Assembly
 fileTypeMapping.cSourceFile=C Source File
 fileTypeMapping.cppSourceFile=C++ Source File
 fileTypeMapping.assemblySourceFile=Assembly Source File
Index: plugin.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/plugin.xml,v
retrieving revision 1.62
diff -u -r1.62 plugin.xml
--- plugin.xml	16 Jul 2004 18:03:28 -0000	1.62
+++ plugin.xml	28 Jul 2004 13:56:05 -0000
@@ -247,7 +247,7 @@
             id="org.eclipse.cdt.core.language.cxx">
       </language>
       <language
-            name="Assembly"
+            name="%fileTypeMapping.AssemblyLanguage"
             id="org.eclipse.cdt.core.language.asm">
       </language>
    </extension>

Back to the top