[251968] [Properties] Improper labels for namespace and processContents
diff --git a/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/editor/Messages.java b/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/editor/Messages.java
index dc09cea..8027c7e 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/editor/Messages.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/editor/Messages.java
@@ -94,6 +94,8 @@
   public static String _UI_LABEL_NAME_SEARCH_FILTER_TEXT;
   public static String _UI_LABEL_ELEMENTS_COLON;
   public static String _UI_LABEL_ATTRIBUTES_COLON;
+  public static String _UI_LABEL_ATTRIBUTES_PROCESSCONTENTS;
+  public static String _UI_LABEL_ATTRIBUTES_NAMESPACE;
   public static String _UI_LABEL_SET_ELEMENT_REFERENCE;
   public static String _UI_LABEL_SET_ATTRIBUTE_REFERENCE;
   public static String _UI_LABEL_TYPES_COLON;
diff --git a/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/editor/messages.properties b/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/editor/messages.properties
index e28dd1d..186d6c1 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/editor/messages.properties
+++ b/bundles/org.eclipse.wst.xsd.ui/src-adt-xsd/org/eclipse/wst/xsd/ui/internal/editor/messages.properties
@@ -124,3 +124,6 @@
 _UI_LABEL_ELEMENTFORMDEFAULT=Prefix qualification of local elements:
 _UI_LABEL_ATTRIBUTEFORMDEFAULT=Prefix qualification of attributes:
 _UI_LABEL_CREATE_ANON_TYPE=Create as local anonymous type
+
+_UI_LABEL_ATTRIBUTES_PROCESSCONTENTS=Process Contents:
+_UI_LABEL_ATTRIBUTES_NAMESPACE=Namespace:
diff --git a/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/sections/XSDAnyElementContentsSection.java b/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/sections/XSDAnyElementContentsSection.java
index 63e4898..a17ab48 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/sections/XSDAnyElementContentsSection.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/sections/XSDAnyElementContentsSection.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2001, 2006 IBM Corporation and others.
+ * Copyright (c) 2001, 2008 IBM Corporation 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
@@ -26,7 +26,6 @@
 import org.eclipse.xsd.XSDParticle;
 import org.eclipse.xsd.XSDProcessContents;
 import org.eclipse.xsd.XSDWildcard;
-import org.eclipse.xsd.util.XSDConstants;
 
 public class XSDAnyElementContentsSection extends MultiplicitySection
 {
@@ -63,7 +62,7 @@
     data.horizontalAlignment = GridData.HORIZONTAL_ALIGN_BEGINNING;
     data.grabExcessHorizontalSpace = false;
 
-    CLabel namespaceLabel = getWidgetFactory().createCLabel(composite, XSDConstants.NAMESPACE_ATTRIBUTE);
+    CLabel namespaceLabel = getWidgetFactory().createCLabel(composite, Messages._UI_LABEL_ATTRIBUTES_NAMESPACE);
     namespaceLabel.setLayoutData(data);
 
     namespaceCombo = getWidgetFactory().createCCombo(composite, SWT.FLAT);
@@ -77,7 +76,7 @@
     PlatformUI.getWorkbench().getHelpSystem().setHelp(namespaceCombo,
     		XSDEditorCSHelpIds.GENERAL_TAB__ANYELEMENT__NAMESPACE);
 
-    CLabel processContentsLabel = getWidgetFactory().createCLabel(composite, XSDConstants.PROCESSCONTENTS_ATTRIBUTE);
+    CLabel processContentsLabel = getWidgetFactory().createCLabel(composite, Messages._UI_LABEL_ATTRIBUTES_PROCESSCONTENTS);
     data = new GridData();
     data.horizontalAlignment = GridData.HORIZONTAL_ALIGN_BEGINNING;
     data.grabExcessHorizontalSpace = false;