[143015] TVT3.2:TCT449: KO: English lables and buttons
diff --git a/plugins/org.eclipse.wst.common.ui/plugin.properties b/plugins/org.eclipse.wst.common.ui/plugin.properties
index 697e6f0..9edee7d 100644
--- a/plugins/org.eclipse.wst.common.ui/plugin.properties
+++ b/plugins/org.eclipse.wst.common.ui/plugin.properties
@@ -100,6 +100,10 @@
 _UI_LABEL_AVAILABLE_TYPES			   = Available Types
 _UI_LABEL_WORKING_SETS                 = Working Sets
 
+_UI_LABEL_New=New...
+_UI_LABEL_DECLARATION_LOCATION=Declaration Location:
+_UI_LABEL_CHOOSE=Choose...
+
 !======================================================================================
 !
 ! Here is the list of Error string that have message IDs - make sure they are unique
diff --git a/plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/dialogs/ComponentSearchListDialog.java b/plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/dialogs/ComponentSearchListDialog.java
index f8f730b..3edc024 100644
--- a/plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/dialogs/ComponentSearchListDialog.java
+++ b/plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/dialogs/ComponentSearchListDialog.java
@@ -75,7 +75,7 @@
     private Text textFilter;
     protected TableViewer componentTableViewer;
     
-    protected String fileLocationLabel = "Declaration Location:";
+    protected String fileLocationLabel = UIPlugin.getString("_UI_LABEL_DECLARATION_LOCATION");
     protected ViewForm fileLocationView;    
     protected CLabel locationLabel;
 
@@ -155,7 +155,7 @@
         if (handler != null)
         {  
            newButton = new Button(filterLabelAndText, SWT.NONE);
-           newButton.setText("New...");  
+           newButton.setText(UIPlugin.getString("_UI_LABEL_New"));  
            newButton.addSelectionListener(new SelectionListener()
            {
 
diff --git a/plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/dialogs/ScopedComponentSearchListDialog.java b/plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/dialogs/ScopedComponentSearchListDialog.java
index 0b6d64d..fe565ee 100644
--- a/plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/dialogs/ScopedComponentSearchListDialog.java
+++ b/plugins/org.eclipse.wst.common.ui/src-search/org/eclipse/wst/common/ui/internal/search/dialogs/ScopedComponentSearchListDialog.java
@@ -122,7 +122,7 @@
     	workingSetsText.setText(valueForWorkingSetsText);
     
     chooseButton = new Button(selectWorkingSetsGroup, SWT.NONE);
-    chooseButton.setText("Choose...");
+    chooseButton.setText(UIPlugin.getString("_UI_LABEL_CHOOSE"));
     chooseButton.addSelectionListener(new SelectionAdapter() {
 		public void widgetSelected(SelectionEvent e) {
 			Shell shell = getShell();