These strings shouldn't be translated

This commit is contained in:
Jamie Cameron
2021-05-28 12:01:10 -07:00
parent 83c173be03
commit 90f0822dc2
2 changed files with 2 additions and 4 deletions

View File

@@ -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

View File

@@ -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/' ] );
}