Fixed Bug 1903 - Text Update for Refresh popup (and some other messages)
authorEugene Ostroukhov <eugeneo@symbian.org>
Mon, 15 Feb 2010 17:15:43 -0800
changeset 155 9f61ecb49625
parent 154 b5b12741c911
child 156 5d68e30cba9b
Fixed Bug 1903 - Text Update for Refresh popup (and some other messages)
org.symbian.tools.wrttools.debug.core/plugin.xml
org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/PreviewView.java
org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WRTProjectDetailsWizardPage.java
org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WRTProjectFilesWizardPage.java
org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WRTProjectTemplateWizardPage.java
org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WrtWidgetWizard.java
--- a/org.symbian.tools.wrttools.debug.core/plugin.xml	Mon Feb 15 16:53:50 2010 -0800
+++ b/org.symbian.tools.wrttools.debug.core/plugin.xml	Mon Feb 15 17:15:43 2010 -0800
@@ -13,7 +13,7 @@
             category="org.symbian.tools.wrttools.editing.preferences.WrtEditingPreferencePage"
             class="org.symbian.tools.wrttools.debug.ui.DebugPreferencePage"
             id="org.symbian.tools.wrttools.debug"
-            name="WRT Debugger">
+            name="Debugger">
       </page>
    </extension>
    <extension
--- a/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/PreviewView.java	Mon Feb 15 16:53:50 2010 -0800
+++ b/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/PreviewView.java	Mon Feb 15 17:15:43 2010 -0800
@@ -277,8 +277,10 @@
 									MessageDialogWithToggle.QUESTION,
 									getSite().getShell(),
 									"WRT Preview",
-									"WRT IDE can refresh preview whenever any changes are made to project files. Refresh will always return the widget to initial page. Do you want to enable automatic refresh for your project?\nNote: you can toggle this setting for particular project on the preview toolbar.",
-									"Keep this setting for all new projects",
+									"The preview window can refresh (reinitialize and restart) whenever a project file is saved.\n" +
+									"This setting for each project can be toggled from the preview toolbar.\n\n" +
+									"Do you want to enable automatic refresh for this project?",
+									"Keep this setting for new projects",
 									false, preferenceStore,
 									IWrtEditingPreferences.PREF_AUTO_REFRESH,
 									SWT.SHEET).getReturnCode() == IDialogConstants.YES_ID;
--- a/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WRTProjectDetailsWizardPage.java	Mon Feb 15 16:53:50 2010 -0800
+++ b/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WRTProjectDetailsWizardPage.java	Mon Feb 15 17:15:43 2010 -0800
@@ -33,7 +33,7 @@
 	private boolean isActive;
 
 	public WRTProjectDetailsWizardPage(WizardContext context, DataBindingContext bindingContext) {
-		super(context, bindingContext, "WRTWidget", "New Symbian Widget Project", null, "Specify Symbian WRT widget details");
+		super(context, bindingContext, "WRTApp", "Application Details", null, "Specify application details");
 	}
 	
 	protected void addTemplateControls(Composite root) {
@@ -44,19 +44,19 @@
 		Composite root = new Composite(parent, SWT.NONE);
 		WizardPageSupport.create(this, bindingContext);
 		root.setLayout(new GridLayout(2, false));
-		createLabel(root, "Widget name:");
+		createLabel(root, "Application name:");
 		
-		createText(root, WizardContext.WIDGET_NAME, "widget name", new RegexpValidator("[^\\w\\. ]", "Widget name cannot contain {0} character", false));
+		createText(root, WizardContext.WIDGET_NAME, "application name", new RegexpValidator("[^\\w\\. ]", "Application name cannot contain {0} character", false));
 		
 		createLabel(root, "");
-		createLabel(root, "This will be the widget's display name on the device");
+		createLabel(root, "This will be the application display name on the device");
 		createLabel(root, "");
 		createLabel(root, "");
 		createLabel(root, "Widget identifier:");
 
-		createText(root, WizardContext.WIDGET_ID, "widget identifier", new RegexpValidator("[\\w]*(\\.\\w[\\w]*)*", "{0} is not a valid widget ID", true));
+		createText(root, WizardContext.WIDGET_ID, "applicatoin identifier", new RegexpValidator("[\\w]*(\\.\\w[\\w]*)*", "{0} is not a valid applicatoin ID", true));
 		createLabel(root, "");
-		createLabel(root, "This id should be unique for succesful installation of widget on the device");
+		createLabel(root, "This id should be unique for succesful installation of application on the device");
 		createLabel(root, "");
 		createLabel(root, "");
 		
--- a/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WRTProjectFilesWizardPage.java	Mon Feb 15 16:53:50 2010 -0800
+++ b/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WRTProjectFilesWizardPage.java	Mon Feb 15 17:15:43 2010 -0800
@@ -27,7 +27,7 @@
 public class WRTProjectFilesWizardPage extends AbstractDataBindingPage {
 
 	public WRTProjectFilesWizardPage(WizardContext context, DataBindingContext bindingContext) {
-		super(context, bindingContext, "WRTApplicationFiles", "New WRT Application Project", null, "Specify Symbian WRT application file names");
+		super(context, bindingContext, "WRTApplicationFiles", "Application Files", null, "Specify application file names");
 	}
 
 	public void createControl(Composite parent) {
--- a/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WRTProjectTemplateWizardPage.java	Mon Feb 15 16:53:50 2010 -0800
+++ b/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WRTProjectTemplateWizardPage.java	Mon Feb 15 17:15:43 2010 -0800
@@ -65,7 +65,7 @@
 	private final DataBindingContext bindingContext;
 
 	public WRTProjectTemplateWizardPage(WizardContext context, DataBindingContext bindingContext) {
-		super("WRTTemplate", "WRT Application Template Selection", null);
+		super("WRTTemplate", "Application Template Selection", null);
 		this.context = context;
 		this.bindingContext = bindingContext;
 		setDescription("Select template that will be used to populate your new project");
--- a/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WrtWidgetWizard.java	Mon Feb 15 16:53:50 2010 -0800
+++ b/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/WrtWidgetWizard.java	Mon Feb 15 17:15:43 2010 -0800
@@ -73,7 +73,7 @@
 	private IConfigurationElement config;
 
 	public WrtWidgetWizard() {
-		setWindowTitle("New WRT Widget");
+		setWindowTitle("New Web Runtime Application");
 		setNeedsProgressMonitor(true);
 	}
 
@@ -239,8 +239,8 @@
 	public void addPages() {
 		resourcePage = new WizardNewProjectCreationPage("Resource");
 		resourcePage
-				.setDescription("Create a WRT widget project in the workspace or other location");
-		resourcePage.setTitle("Create a New WRT Widget Project");
+				.setDescription("Create a Web Runtime application project in the workspace or other location");
+		resourcePage.setTitle("Create a New Web Runtime Application Project");
 		addPage(resourcePage);
 
 		templatesPage = new WRTProjectTemplateWizardPage(context,