[jbosstools-commits] JBoss Tools SVN: r41643 - trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Fri Jun 1 14:12:58 EDT 2012


Author: adietish
Date: 2012-06-01 14:12:58 -0400 (Fri, 01 Jun 2012)
New Revision: 41643

Modified:
   trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizard.java
Log:
[JBIDE-11081] corrected warning message

Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizard.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizard.java	2012-06-01 18:12:48 UTC (rev 41642)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/OpenShiftExpressApplicationWizard.java	2012-06-01 18:12:58 UTC (rev 41643)
@@ -303,11 +303,11 @@
 				} else if (!wizardModel.isGitSharedProject()) {
 					if (!askForConfirmation(
 							NLS.bind(
-									"OpenShift application \"{0}\" will be enabled on project \"{1}\" by "
-											+ "copying OpenShift configuration and enabling Git for the project.\n"
-											+ "This cannot be undone.\n"
-											+ "Furthermore publishing to your OpenShift app will eventually override existing content.\n"
-											+ "\nDo you wish to continue ?",
+									"OpenShift application {0} will be enabled on project {1} by copying OpenShift configuration " +
+									"from server to local project and connecting local project to OpenShift Git repository.\n" +
+									"The local project will be automatically committed to local Git repository and further publishing will " +
+									"eventually override existing remote content.\n\n" +
+									"This cannot be undone. Do you wish to continue?",
 									wizardModel.getApplicationName(), wizardModel.getProjectName()),
 							wizardModel.getApplicationName())) {
 						return Status.CANCEL_STATUS;
@@ -316,11 +316,11 @@
 				} else {
 					if (!askForConfirmation(
 							NLS.bind(
-									"OpenShift application \"{0}\" will be enabled on project \"{1}\" by "
-											+ "copying OpenShift configuration and enabling Git for the project.\n"
-											+ "This cannot be undone.\n"
-											+ "Furthermore publishing to your OpenShift app will eventually override existing content.\n"
-											+ "\nDo you wish to continue ?",
+									"OpenShift application {0} will be enabled on project {1} by copying OpenShift configuration " +
+									"from server to local project and connecting local project to OpenShift Git repository.\n" +
+									"The local project will be automatically committed to local Git repository and further publishing will " +
+									"eventually override existing remote content.\n\n" +
+									"This cannot be undone. Do you wish to continue?",
 									wizardModel.getApplicationName(), wizardModel.getProjectName()),
 							wizardModel.getApplicationName())) {
 						return Status.CANCEL_STATUS;



More information about the jbosstools-commits mailing list