debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/AbstractLaunchSettingsDialog.java
changeset 969 b0dd389735fb
parent 956 d1e221a2875f
child 983 8b4ee73c530c
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/AbstractLaunchSettingsDialog.java	Tue Feb 16 09:47:14 2010 -0600
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/AbstractLaunchSettingsDialog.java	Tue Feb 16 13:44:54 2010 -0600
@@ -38,7 +38,7 @@
  */
 public abstract class AbstractLaunchSettingsDialog extends TitleAreaDialog {
 	
-	protected final static String UID = ".uid";
+	protected final static String UID = ".uid"; //$NON-NLS-1$
 	
 	protected final LaunchWizardData data;
 	protected int INDENT;
@@ -61,7 +61,7 @@
 	@Override
 	protected void configureShell(Shell newShell) {
 		super.configureShell(newShell);
-		newShell.setText("New Launch Configuration Wizard");
+		newShell.setText(Messages.getString("AbstractLaunchSettingsDialog.Title")); //$NON-NLS-1$
 	}
 
 	protected Composite initDialogArea(Composite parent, String title, String helpId) {
@@ -115,7 +115,7 @@
 		setTitle(title);
 
 		if (status.isOK()) {
-			setMessage("", IMessageProvider.NONE);
+			setMessage("", IMessageProvider.NONE); //$NON-NLS-1$
 		} else {
 			setMessage(status.getMessage(), severityToMsgType(status.getSeverity()));
 		}