Skip to content

Commit

Permalink
Restore labels for supported applications under 'OTP Policy' tab (key…
Browse files Browse the repository at this point in the history
  • Loading branch information
jonkoops authored Oct 25, 2022
1 parent 3a30061 commit 3d6c069
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1360,6 +1360,8 @@ authenticator.alias.tooltip=Name of the configuration
otp-type=OTP Type
time-based=Time Based
counter-based=Counter Based
totpAppFreeOTPName=FreeOTP
totpAppGoogleName=Google Authenticator
otp-type.tooltip=totp is Time-Based One Time Password. 'hotp' is a counter base one time password in which the server keeps a counter to hash against.
otp-hash-algorithm=OTP Hash Algorithm
otp-hash-algorithm.tooltip=What hashing algorithm should be used to generate the OTP.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ <h1>{{:: 'authentication' | translate}}</h1>
<div class="form-group">
<label class="col-md-2 control-label">{{:: 'otp-supported-applications' | translate}}</label>
<div class="col-md-6">
{{realm.otpSupportedApplications.join(', ')}}
<span data-ng-repeat="key in realm.otpSupportedApplications">
{{:: key | translate}}<span data-ng-if="!$last">, </span>
</span>
</div>
<kc-tooltip>{{:: 'otp-supported-applications.tooltip' | translate}}</kc-tooltip>
</div>
Expand Down

0 comments on commit 3d6c069

Please sign in to comment.