KEYCLOAK-11320 Add tooltips to fields with vault support
This commit is contained in:
parent
c68afdab83
commit
8a9152b769
2 changed files with 5 additions and 3 deletions
|
@ -59,6 +59,7 @@ host=Host
|
|||
smtp-host=SMTP Host
|
||||
port=Port
|
||||
smtp-port=SMTP Port (defaults to 25)
|
||||
smtp-password.tooltip=SMTP password. This field is able to obtain its value from vault, use ${vault.ID} format.
|
||||
from=From
|
||||
fromDisplayName=From Display Name
|
||||
fromDisplayName.tooltip=A user-friendly name for the 'From' address (optional).
|
||||
|
@ -591,7 +592,7 @@ identity-provider.client-id.tooltip=The client or client identifier registered w
|
|||
client-secret=Client Secret
|
||||
show-secret=Show secret
|
||||
hide-secret=Hide secret
|
||||
client-secret.tooltip=The client or client secret registered within the identity provider.
|
||||
client-secret.tooltip=The client or client secret registered within the identity provider. This field is able to obtain its value from vault, use ${vault.ID} format.
|
||||
issuer=Issuer
|
||||
issuer.tooltip=The issuer identifier for the issuer of the response. If not provided, no validation will be performed.
|
||||
default-scopes=Default Scopes
|
||||
|
@ -651,7 +652,7 @@ validating-x509-certificate=Validating X509 Certificates
|
|||
validating-x509-certificate.tooltip=The certificate in PEM format that must be used to check for signatures. Multiple certificates can be entered, separated by comma (,).
|
||||
saml.import-from-url.tooltip=Import metadata from a remote IDP SAML entity descriptor.
|
||||
social.client-id.tooltip=The client identifier registered with the identity provider.
|
||||
social.client-secret.tooltip=The client secret registered with the identity provider.
|
||||
social.client-secret.tooltip=The client secret registered with the identity provider. This field is able to obtain its value from vault, use ${vault.ID} format.
|
||||
social.default-scopes.tooltip=The scopes to be sent when asking for authorization. See documentation for possible values, separator and default value'.
|
||||
key=Key
|
||||
stackoverflow.key.tooltip=The Key obtained from Stack Overflow client registration.
|
||||
|
@ -943,7 +944,7 @@ ldap.authentication-type.tooltip=Type of the Authentication method used during L
|
|||
bind-dn=Bind DN
|
||||
ldap.bind-dn.tooltip=DN of LDAP admin, which will be used by Keycloak to access LDAP server
|
||||
bind-credential=Bind Credential
|
||||
ldap.bind-credential.tooltip=Password of LDAP admin
|
||||
ldap.bind-credential.tooltip=Password of LDAP admin. This field is able to obtain its value from vault, use ${vault.ID} format.
|
||||
test-authentication=Test authentication
|
||||
custom-user-ldap-filter=Custom User LDAP Filter
|
||||
ldap.custom-user-ldap-filter.tooltip=Additional LDAP Filter for filtering searched users. Leave this empty if you don't need additional filter. Make sure that it starts with '(' and ends with ')'
|
||||
|
|
|
@ -80,6 +80,7 @@
|
|||
<div class="col-md-6">
|
||||
<input class="form-control" id="smtpPas" kc-password ng-model="realm.smtpServer.password" placeholder="{{:: 'login-password' | translate}}" ng-disabled="!realm.smtpServer.auth" ng-required="realm.smtpServer.auth">
|
||||
</div>
|
||||
<kc-tooltip>{{:: 'smtp-password.tooltip' | translate}}</kc-tooltip>
|
||||
</div>
|
||||
|
||||
<div class="form-group" data-ng-show="access.manageRealm">
|
||||
|
|
Loading…
Reference in a new issue