Externalized String fixes.
diff --git a/bundles/org.eclipse.wst.jsdt.web.ui/plugin.properties b/bundles/org.eclipse.wst.jsdt.web.ui/plugin.properties
index 7d7330d..b9f8ac3 100644
--- a/bundles/org.eclipse.wst.jsdt.web.ui/plugin.properties
+++ b/bundles/org.eclipse.wst.jsdt.web.ui/plugin.properties
@@ -67,4 +67,5 @@
 renameParticipant.name.2 = JSDT Web Rename Participant
 renameParticipant.name.3 = JSDT Web Rename Participant
 menu.label.5 = Web Development Tools
-action.label.21 = Add JavaScript Support
\ No newline at end of file
+action.label.21 = Add JavaScript Support
+queryParticipant.name.0 = JavaScript Query Participant
\ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.web.ui/plugin.xml b/bundles/org.eclipse.wst.jsdt.web.ui/plugin.xml
index db5d897..8c71c41 100644
--- a/bundles/org.eclipse.wst.jsdt.web.ui/plugin.xml
+++ b/bundles/org.eclipse.wst.jsdt.web.ui/plugin.xml
@@ -443,7 +443,7 @@
 	<!--======================================================================================-->
 	<extension point="org.eclipse.wst.jsdt.ui.queryParticipants">
 		<queryParticipant
-			name="JavaScript Query Participant"
+			name="%queryParticipant.name.0"
 			nature="org.eclipse.wst.jsdt.core.jsNature"
 			class="org.eclipse.wst.jsdt.web.ui.internal.java.search.ui.JsQueryParticipant"
 			id="org.eclipse.wst.jsdt.web.ui.java.search.ui.JsQueryParticipant" />
diff --git a/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/actions/AddJavaDocStubAction.java b/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/actions/AddJavaDocStubAction.java
index 509c264..4973731 100644
--- a/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/actions/AddJavaDocStubAction.java
+++ b/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/actions/AddJavaDocStubAction.java
@@ -16,7 +16,6 @@
 import org.eclipse.wst.jsdt.core.ICompilationUnit;
 import org.eclipse.wst.jsdt.core.IJavaElement;
 import org.eclipse.wst.jsdt.core.IMember;
-import org.eclipse.wst.jsdt.internal.ui.actions.ActionMessages;
 import org.eclipse.wst.jsdt.internal.ui.actions.WorkbenchRunnableAdapter;
 import org.eclipse.wst.jsdt.internal.ui.util.ExceptionHandler;
 import org.eclipse.wst.jsdt.web.ui.views.contentoutline.JsJfaceNode;
@@ -30,7 +29,7 @@
 	private IWorkbenchPart targetPart;
 	
 	public String getDialogTitle() {
-		return ActionMessages.AddJavaDocStubAction_0;
+		return Messages.getString("AddJavaDocStubAction.0"); //$NON-NLS-1$
 	}
 	
 	public Shell getShell() {
@@ -69,7 +68,7 @@
 			AddJavaDocStubOperation op = new AddJavaDocStubOperation(members, node);
 			PlatformUI.getWorkbench().getProgressService().runInUI(PlatformUI.getWorkbench().getProgressService(), new WorkbenchRunnableAdapter(op, op.getScheduleRule()), op.getScheduleRule());
 		} catch (InvocationTargetException e) {
-			ExceptionHandler.handle(e, getShell(), getDialogTitle(), ActionMessages.AddJavaDocStubsAction_error_actionFailed);
+			ExceptionHandler.handle(e, getShell(), getDialogTitle(), Messages.getString("AddJavaDocStubAction.1")); //$NON-NLS-1$
 		} catch (InterruptedException e) {
 			// operation canceled
 		}
diff --git a/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/actions/messages.properties b/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/actions/messages.properties
index 3f33802..237ac6b 100644
--- a/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/actions/messages.properties
+++ b/bundles/org.eclipse.wst.jsdt.web.ui/src/org/eclipse/wst/jsdt/web/ui/actions/messages.properties
@@ -12,5 +12,7 @@
 ShowHistoryAction.1=Error while displaying element in Script View:\n
 ShowInNavigatorAction.0=Error Opening in Script View
 ShowInNavigatorAction.1=Error while displaying element in Script View:\n
+AddJavaDocStubAction.0=JavaScript Doc
+AddJavaDocStubAction.1=Error while adding comment
 AddJavaDocStubOperation.0=Generate JsDoc
 AddJavaDocStubOperation.1=Generate JsDoc