xref: /plugin/twofactor/lang/en/settings.php (revision 34dda02b2875c9af990eb2f4de053e4c72d54d03)
1<?php
2$lang["enable"] = 'Turn on two factor authentication.';
3$lang["optinout"] = 'Configure how users can chose to use two factor authentication: Opt-In, Opt-Out, or Mandatory.';
4$lang["otpsubject"] = 'The subject line used when sending the OTP code.';
5$lang["otpcontent"] = 'Message to be delivered to the recipient. Must contain "$otp" to be replaced with the OTP code.';
6$lang["generatorexpiry"] = 'Number of most recent OTP codes allowed before an OTP code expires. Only valid for OTP generators like Google Authenticator.';
7$lang["otplength"] = 'The number of characters to have in a OTP code.';
8$lang["sentexpiry"] = 'The time, in minutes, that the OTP code is good for.';
9$lang["loginnotice"] = 'Send a notice on successful login to the user. Options are never (none), user choice (user), and always send a message (always).';
10$lang["loginsubject"] = 'The subject line used when notifying of successful login. "$title" is replaced with the name of the wiki.';
11$lang["logincontent"] = 'Login notificaiton message sent to user. "$time" is replaced with the date and time of the login.';
12$lang["refreshexpiry"] = 'The time, in minutes, that the browser can remain idle before the user is logged out.  Valid values are from 5 to 1440.  Invalid values will be clamped to this range.';
13$lang["optinout_o_optin"] = 'Opt-In';
14$lang["optinout_o_optout"] = 'Opt-Out';
15$lang["optinout_o_mandatory"] = 'Mandatory';
16$lang["loginnotice_o_none"] = 'None';
17$lang["loginnotice_o_user"] = 'User';
18$lang["loginnotice_o_always"] = 'Always';
19
20$lang["logging_level"] = 'The logging level. None produces no logging. Audit records 2FA login and logout activity.  Audit+ also records sending of notifications. Debug provides detailed workflow data.  Debug+ also includes variables passed to and from functions.';
21$lang["logging_path"] = 'Path and filename used to write the logs to. Defaults to the data directory. Honors absolute paths.';
22$lang["logging_level_o_0"] = 'None';
23$lang["logging_level_o_1"] = 'Audit';
24$lang["logging_level_o_2"] = 'Audit+';
25$lang["logging_level_o_3"] = 'Debug';
26$lang["logging_level_o_4"] = 'Debug+';
27