[90990] resource strings for html
diff --git a/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/internal/contentproperties/ui/HTMLContentSettingsPropertyPage.java b/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/internal/contentproperties/ui/HTMLContentSettingsPropertyPage.java
index d8bac80..848d98e 100644
--- a/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/internal/contentproperties/ui/HTMLContentSettingsPropertyPage.java
+++ b/bundles/org.eclipse.wst.html.ui/src/org/eclipse/wst/html/ui/internal/contentproperties/ui/HTMLContentSettingsPropertyPage.java
@@ -19,12 +19,12 @@
 import org.eclipse.swt.widgets.Text;
 import org.eclipse.swt.widgets.Widget;
 import org.eclipse.ui.help.WorkbenchHelp;
+import org.eclipse.wst.html.ui.internal.HTMLUIMessages;
 import org.eclipse.wst.html.ui.internal.Logger;
 import org.eclipse.wst.html.ui.internal.editor.IHelpContextIds;
 import org.eclipse.wst.sse.ui.contentproperties.IContentSettings;
 import org.eclipse.wst.sse.ui.contentproperties.ui.ComboListOnPropertyPage;
 import org.eclipse.wst.sse.ui.contentproperties.ui.ContentSettingsPropertyPage;
-import org.eclipse.wst.sse.ui.internal.SSEUIPlugin;
 
 public final class HTMLContentSettingsPropertyPage extends ContentSettingsPropertyPage implements org.eclipse.swt.events.SelectionListener {
 
@@ -51,7 +51,7 @@
 
 		// create description of implecit DOCTYPE	
 		Label label = new Label(propertyPage, SWT.LEFT);
-		label.setText(SSEUIPlugin.getResourceString("%UI_Description_of_role_of_following_DOCTYPE"));//$NON-NLS-1$
+		label.setText(HTMLUIMessages.UI_Description_of_role_of_following_DOCTYPE);
 		GridData data = new GridData();
 		data.horizontalAlignment = GridData.FILL;
 		data.horizontalSpan = numCols;
@@ -199,7 +199,7 @@
 		GridData data = new GridData(GridData.GRAB_HORIZONTAL | GridData.FILL_HORIZONTAL);
 		data.horizontalIndent = 10;
 		publicLabel.setLayoutData(data);
-		publicLabel.setText(SSEUIPlugin.getResourceString("%UI_Public_ID"));//$NON-NLS-1$
+		publicLabel.setText(HTMLUIMessages.UI_Public_ID);
 		publicIdText = new Text(super.propertyPage, SWT.BORDER | SWT.READ_ONLY);
 		data = new GridData();
 
@@ -209,7 +209,7 @@
 		data = new GridData(GridData.GRAB_HORIZONTAL | GridData.FILL_HORIZONTAL);
 		data.horizontalIndent = 10;
 		systemLabel.setLayoutData(data);
-		systemLabel.setText(SSEUIPlugin.getResourceString("%UI_System_ID"));//$NON-NLS-1$
+		systemLabel.setText(HTMLUIMessages.UI_System_ID);
 		systemIdText = new Text(super.propertyPage, SWT.BORDER | SWT.READ_ONLY);
 		data = new GridData();