[no bug] "ref" should not be translated
diff --git a/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/providers/XSDSectionLabelProvider.java b/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/providers/XSDSectionLabelProvider.java
index 170c14f..8bd4c05 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/providers/XSDSectionLabelProvider.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/providers/XSDSectionLabelProvider.java
@@ -111,8 +111,10 @@
 
           if (isReference)
           {
-            sb.append(" ");//$NON-NLS-1$
-            sb.append(Messages.UI_PAGE_HEADING_REFERENCE);
+            sb.append(" ref");//$NON-NLS-1$
+            // This string is not easily translatable to other languages.
+            // For now, make it english-only since we use the element tag as the title anyway
+//            sb.append(Messages.UI_PAGE_HEADING_REFERENCE);
           }
 
           IWorkbench workbench = PlatformUI.getWorkbench();