[jbosstools-commits] JBoss Tools SVN: r42339 - 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
Tue Jul 3 03:14:23 EDT 2012
Author: xcoulon
Date: 2012-07-03 03:14:23 -0400 (Tue, 03 Jul 2012)
New Revision: 42339
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java
Log:
Fixed - JBIDE-12170
Incorrect description on Domain creation dialog
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java 2012-07-03 02:08:19 UTC (rev 42338)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java 2012-07-03 07:14:23 UTC (rev 42339)
@@ -281,11 +281,11 @@
final String domainName = (String) domainNameObservable.getValue();
if (domainName.isEmpty()) {
return ValidationStatus.cancel(
- "Select an alphanumerical name and a type for the domain to edit.");
+ "Select an alphanumerical name for the domain to edit.");
}
if (!StringUtils.isAlphaNumeric(domainName)) {
return ValidationStatus.error(
- "The name may only contain lower-case letters and digits.");
+ "The domain name may only contain lower-case letters and digits.");
}
return ValidationStatus.ok();
}
More information about the jbosstools-commits
mailing list