An attempt to address TOTP naming confusion

This commit is contained in:
Ilia Ross
2024-10-24 01:43:33 +03:00
parent 33afba1686
commit a8a382ecc3
2 changed files with 2 additions and 1 deletions

View File

@@ -1170,6 +1170,7 @@ twofactor_title=Two-Factor Authentication
twofactor_header=Two-factor authentication options
twofactor_provider=Authentication provider
twofactor_none=None
twofactor_totp=TOTP Authenticator
twofactor_apikey=Authy API key
twofactor_test=Use provider's test mode?
twofactor_desc=Two-factor authentication allows Webmin users to enable use of an additional authentication device when logging in, such as a one-time passcode generator. Users must individually enroll with the selected authentication provider after it is enabled on this page.

View File

@@ -5,7 +5,7 @@
# containing an ID, name and URL for more info
sub list_twofactor_providers
{
return ( [ 'totp', 'TOTP',
return ( [ 'totp', $text{'twofactor_totp'},
'https://en.wikipedia.org/wiki/Time-based_one-time_password' ],
[ 'authy', 'Authy',
'http://www.authy.com/' ] );