xref: /plugin/twofactor/lang/en/settings.php (revision 163ac707d28a7cab09d4545eca233c5a5a0f9969)
1*163ac707SMichael Wilmes<?php
2*163ac707SMichael Wilmes$lang["enable"] = 'Turn on two factor authentication';
3*163ac707SMichael Wilmes$lang["optinout"] = 'Configure how users can chose to use two factor authentication: OptIn, OptOut, or Mandatory.';
4*163ac707SMichael Wilmes$lang["usega"] = 'Enable Google Authenticator (GA) Two-Factor';
5*163ac707SMichael Wilmes$lang["gasecret"] = 'Shared secret for GA. If not provided, each user will be issued a unique secret.';
6*163ac707SMichael Wilmes$lang["gaexpiry"] = 'Number of most recent OTP codes allowed before an OTP code expires.';
7*163ac707SMichael Wilmes$lang["useotp"] = 'Enable use of a one time password';
8*163ac707SMichael Wilmes$lang["otpmethod"] = 'Provide the method of delivering the one time password. Can be by email, SMS gateway (via email), or SMS appliance.';
9*163ac707SMichael Wilmes$lang["otpurl"] = 'URL used to connect to the SMS appliance. "$phone" will be replaced with the phone number. "$msg" will be replaced with the message.';
10*163ac707SMichael Wilmes$lang["otpcontent"] = 'Message to be delivered to the recipient. Must contain "$otp" to be replaced with the OTP code.';
11*163ac707SMichael Wilmes$lang["otplength"] = 'The number of characters to have in a OTP code.';
12*163ac707SMichael Wilmes$lang["otpexpiry"] = 'The time, in minutes, that the OTP code is good for.';
13