diff --git a/webmin/lang/en b/webmin/lang/en index 4f011eef9..0737dd45d 100644 --- a/webmin/lang/en +++ b/webmin/lang/en @@ -1109,8 +1109,6 @@ twofactor_err=Failed to save two-factor authentication twofactor_eprovider=Invalid provider! twofactor_eusers=Two-factor authentication cannot be disabled, as the following users are currently enrolled : $1 twofactor_eapikey=Missing or invalid-looking API key -twofactor_authy=Authy -twofactor_totp=Google Authenticator twofactor_email=Your email address twofactor_country=Cellphone country code twofactor_phone=Cellphone phone number diff --git a/webmin/twofactor-funcs-lib.pl b/webmin/twofactor-funcs-lib.pl index 7f85e8e5d..5d4195fc6 100644 --- a/webmin/twofactor-funcs-lib.pl +++ b/webmin/twofactor-funcs-lib.pl @@ -5,9 +5,9 @@ # containing an ID, name and URL for more info sub list_twofactor_providers { -return ( [ 'totp', $text{'twofactor_totp'}, +return ( [ 'totp', 'Google Authenticator', 'http://en.wikipedia.org/wiki/Google_Authenticator' ], - [ 'authy', $text{'twofactor_authy'}, + [ 'authy', 'Authy', 'http://www.authy.com/' ] ); }