Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Prigogin2012-08-24 16:49:56 +0000
committerSergey Prigogin2012-08-24 17:14:48 +0000
commitcace4b374ba1aa51e8af75fe2525ae1ef72893b5 (patch)
tree7884216c1a2e566a866750ada4a6d8259e5ca1af
parent7e16142beb7dddf981162b15417cdc763981c9fa (diff)
downloadorg.eclipse.cdt-cace4b374ba1aa51e8af75fe2525ae1ef72893b5.tar.gz
org.eclipse.cdt-cace4b374ba1aa51e8af75fe2525ae1ef72893b5.tar.xz
org.eclipse.cdt-cace4b374ba1aa51e8af75fe2525ae1ef72893b5.zip
Normalized extension point labels.
-rw-r--r--codan/org.eclipse.cdt.codan.core/OSGI-INF/l10n/bundle.properties3
-rw-r--r--codan/org.eclipse.cdt.codan.core/plugin.xml4
-rw-r--r--codan/org.eclipse.cdt.codan.ui/OSGI-INF/l10n/bundle.properties4
-rw-r--r--codan/org.eclipse.cdt.codan.ui/plugin.xml4
4 files changed, 8 insertions, 7 deletions
diff --git a/codan/org.eclipse.cdt.codan.core/OSGI-INF/l10n/bundle.properties b/codan/org.eclipse.cdt.codan.core/OSGI-INF/l10n/bundle.properties
index ad252dc6852..6a6c77d109b 100644
--- a/codan/org.eclipse.cdt.codan.core/OSGI-INF/l10n/bundle.properties
+++ b/codan/org.eclipse.cdt.codan.core/OSGI-INF/l10n/bundle.properties
@@ -17,7 +17,8 @@ extension.name.Marker = Code Analysis Problem
category.name.ProgrammingErrors = Potential Programming Problems
category.name.CodeStyle = Coding Style
category.name.CompilerErrors = Syntax and Semantic Errors
-extension-point.name.CodeAnalysis = Code Analysis Checkers
+codeAnalysisCheckersExtensionPoint = Code Analysis Checkers
+checkerEnablementExtensionPoint = Verification of Checker Enablement
marker.semanticError = Semantic Error
category.name.Security = Security Vulnerabilities \ No newline at end of file
diff --git a/codan/org.eclipse.cdt.codan.core/plugin.xml b/codan/org.eclipse.cdt.codan.core/plugin.xml
index 11d7fa82852..4d43413061d 100644
--- a/codan/org.eclipse.cdt.codan.core/plugin.xml
+++ b/codan/org.eclipse.cdt.codan.core/plugin.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
- <extension-point id="checkers" name="%extension-point.name.CodeAnalysis" schema="schema/checkers.exsd"/>
- <extension-point id="checkerEnablement" name="Verification of checker enablement" schema="schema/checkerEnablement.exsd"/>
+ <extension-point id="checkers" name="%codeAnalysisCheckersExtensionPoint" schema="schema/checkers.exsd"/>
+ <extension-point id="checkerEnablement" name="%checkerEnablementExtensionPoint" schema="schema/checkerEnablement.exsd"/>
<extension
id="codanBuilder"
diff --git a/codan/org.eclipse.cdt.codan.ui/OSGI-INF/l10n/bundle.properties b/codan/org.eclipse.cdt.codan.ui/OSGI-INF/l10n/bundle.properties
index f9262ff8971..648716668bc 100644
--- a/codan/org.eclipse.cdt.codan.ui/OSGI-INF/l10n/bundle.properties
+++ b/codan/org.eclipse.cdt.codan.ui/OSGI-INF/l10n/bundle.properties
@@ -18,8 +18,8 @@ CodeAnalysisPreferencesBuild.name = Launching
category.name = Code Analysis
command.name = Run Code Analysis
view.name = Problem Details
-extension-point.name = Codan Problem Details
-extension-point.name.codamMarkerResolution = Codan Marker Resolution
+codanProblemDetailsExtensionPoint = Codan Problem Details
+codanMarkerResolutionExtensionPoint = Codan Marker Resolution
markerTypeCategory.name = Code Analysis Problems
markerGrouping.label = Code Analysis Problem Type
markerGroupingEntry.category.Unknown = Unknown
diff --git a/codan/org.eclipse.cdt.codan.ui/plugin.xml b/codan/org.eclipse.cdt.codan.ui/plugin.xml
index 9dbef631ff0..aa0560f8e07 100644
--- a/codan/org.eclipse.cdt.codan.ui/plugin.xml
+++ b/codan/org.eclipse.cdt.codan.ui/plugin.xml
@@ -71,8 +71,8 @@
name="%view.name">
</view>
</extension>
- <extension-point id="codanProblemDetails" name="%extension-point.name" schema="schema/codanProblemDetails.exsd"/>
- <extension-point id="codanMarkerResolution" name="%extension-point.name.codamMarkerResolution" schema="schema/codanMarkerResolution.exsd"/>
+ <extension-point id="codanProblemDetails" name="%codanProblemDetailsExtensionPoint" schema="schema/codanProblemDetails.exsd"/>
+ <extension-point id="codanMarkerResolution" name="%codanMarkerResolutionExtensionPoint" schema="schema/codanMarkerResolution.exsd"/>
<!--
<extension
point="org.eclipse.ui.bindings">

Back to the top