[441892] HTMLAttributeValidationQuickFixProcessor does not display proposals in French
diff --git a/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/internal/text/correction/HTMLAttributeValidationQuickFixProcessor.java b/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/internal/text/correction/HTMLAttributeValidationQuickFixProcessor.java index 6b0c458..21f26c2 100644 --- a/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/internal/text/correction/HTMLAttributeValidationQuickFixProcessor.java +++ b/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/internal/text/correction/HTMLAttributeValidationQuickFixProcessor.java
@@ -54,9 +54,7 @@ private IPreferencesService fPreferenceService; public HTMLAttributeValidationQuickFixProcessor() { - String templ = HTMLCoreMessages.Undefined_attribute_name___ERROR_; - templ = templ.replaceAll("\\{[0-9]*\\}", "\\*"); //$NON-NLS-1$ - UNDEFINED_ATTRIBUTE_NAME_MATCHER = new StringMatcher(templ); + UNDEFINED_ATTRIBUTE_NAME_MATCHER = new StringMatcher(NLS.bind(HTMLCoreMessages.Undefined_attribute_name___ERROR_, "*")); //$NON-NLS-1$ fPreferenceService = Platform.getPreferencesService(); }