change wording from Host to URL

This commit is contained in:
Chris Meyers
2016-12-20 15:12:50 -05:00
parent 6373642a67
commit 8b06d9a571

View File

@@ -146,18 +146,20 @@ angular.module('CredentialsHelper', ['Utilities'])
scope.password_required = true; scope.password_required = true;
scope.passwordLabel = i18n._('Password'); scope.passwordLabel = i18n._('Password');
scope.host_required = true; scope.host_required = true;
scope.hostLabel = i18n._("Satellite 6 Host"); scope.hostLabel = i18n._("Satellite 6 URL");
scope.hostPopOver = i18n.sprintf(i18n._("Enter the hostname or IP address name which %s" + scope.hostPopOver = i18n.sprintf(i18n._("Enter the hostname or IP address name which %s" +
"corresponds to your Red Hat Satellite 6 server."), "<br />"); "corresponds to your Red Hat Satellite 6 server. %s" +
"For example, %s"), "<br />", "<br />", "https://satelite.example.org");
break; break;
case 'cloudforms': case 'cloudforms':
scope.username_required = true; scope.username_required = true;
scope.password_required = true; scope.password_required = true;
scope.passwordLabel = i18n._('Password'); scope.passwordLabel = i18n._('Password');
scope.host_required = true; scope.host_required = true;
scope.hostLabel = i18n._("CloudForms Host"); scope.hostLabel = i18n._("CloudForms URL");
scope.hostPopOver = i18n.sprintf(i18n._("Enter the hostname or IP address for the virtual %s" + scope.hostPopOver = i18n.sprintf(i18n._("Enter the hostname or IP address for the virtual %s" +
" machine which is hosting the CloudForm appliance."), "<br />"); " machine which is hosting the CloudForm URL. %s" +
"For example, %s"), "<br />", "<br />", "https://cloudforms.example.org");
break; break;
case 'net': case 'net':
scope.username_required = true; scope.username_required = true;