debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/AbstractLaunchSettingsDialog.java
branchRCL_2_4
changeset 966 15c9cbbf6707
parent 953 68b6a294ab01
child 982 c848ffa5a500
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/AbstractLaunchSettingsDialog.java	Tue Feb 16 11:09:11 2010 -0600
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/newwizard/AbstractLaunchSettingsDialog.java	Tue Feb 16 13:41:43 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()));
 		}