Added copy in for host tool tips

This commit is contained in:
Ken Hoes
2016-05-11 14:25:34 -04:00
parent 094b696fdc
commit 9250034f26

View File

@@ -75,7 +75,6 @@ angular.module('CredentialsHelper', ['Utilities'])
scope.passwordLabel = 'Password (API Key)'; scope.passwordLabel = 'Password (API Key)';
scope.projectPopOver = "<p>The project value</p>"; scope.projectPopOver = "<p>The project value</p>";
scope.hostPopOver = "<p>The host value</p>"; scope.hostPopOver = "<p>The host value</p>";
if (!Empty(scope.kind)) { if (!Empty(scope.kind)) {
// Apply kind specific settings // Apply kind specific settings
switch (scope.kind.value) { switch (scope.kind.value) {
@@ -131,6 +130,7 @@ angular.module('CredentialsHelper', ['Utilities'])
scope.password_required = true; scope.password_required = true;
scope.hostLabel = "vCenter Host"; scope.hostLabel = "vCenter Host";
scope.passwordLabel = 'Password'; scope.passwordLabel = 'Password';
scope.hostPopOver = "Enter the hostname or IP address which corresponds to your VMware vCenter.";
break; break;
case 'openstack': case 'openstack':
scope.hostLabel = "Host (Authentication URL)"; scope.hostLabel = "Host (Authentication URL)";
@@ -152,6 +152,8 @@ angular.module('CredentialsHelper', ['Utilities'])
scope.passwordLabel = 'Password'; scope.passwordLabel = 'Password';
scope.host_required = true; scope.host_required = true;
scope.hostLabel = "Satellite 6 Host"; scope.hostLabel = "Satellite 6 Host";
scope.hostPopOver = "Enter the hostname or IP address name which <br />" +
"corresponds to your Red Hat Satellite 6 server.";
break; break;
case 'cloudforms': case 'cloudforms':
scope.username_required = true; scope.username_required = true;
@@ -159,6 +161,8 @@ angular.module('CredentialsHelper', ['Utilities'])
scope.passwordLabel = 'Password'; scope.passwordLabel = 'Password';
scope.host_required = true; scope.host_required = true;
scope.hostLabel = "CloudForms Host"; scope.hostLabel = "CloudForms Host";
scope.hostPopOver = "Enter the hostname or IP address for the virtual <br />" +
" machine which is hosting the CloudForm appliance.";
break; break;
case 'net': case 'net':
scope.username_required = true; scope.username_required = true;