1<?php 2$lang["optinout"] = 'Configure how users can chose to use two factor authentication: Opt-In, Opt-Out, or Mandatory.'; 3$lang["otpsubject"] = 'The subject line used when sending the OTP code.'; 4$lang["otpcontent"] = 'Message to be delivered to the recipient. Must contain "$otp" to be replaced with the OTP code.'; 5$lang["generatorexpiry"] = 'Number of most recent OTP codes allowed before an OTP code expires. Only valid for OTP generators like Google Authenticator.'; 6$lang["otplength"] = 'The number of characters to have in a OTP code.'; 7$lang["sentexpiry"] = 'The time, in minutes, that the OTP code is good for.'; 8$lang["loginnotice"] = 'Send a notice on successful login to the user. Options are never (none), user choice (user), and always send a message (always).'; 9$lang["loginsubject"] = 'The subject line used when notifying of successful login. "$title" is replaced with the name of the wiki.'; 10$lang["logincontent"] = 'Login notificaiton message sent to user. "$time" is replaced with the date and time of the login.'; 11$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.'; 12$lang["optinout_o_optin"] = 'Opt-In'; 13$lang["optinout_o_optout"] = 'Opt-Out'; 14$lang["optinout_o_mandatory"] = 'Mandatory'; 15$lang["loginnotice_o_none"] = 'None'; 16$lang["loginnotice_o_user"] = 'User'; 17$lang["loginnotice_o_always"] = 'Always'; 18 19$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.'; 20$lang["logging_path"] = 'Path and filename used to write the logs to. Defaults to the data directory. Honors absolute paths.'; 21$lang["logging_level_o_0"] = 'None'; 22$lang["logging_level_o_1"] = 'Audit'; 23$lang["logging_level_o_2"] = 'Audit+'; 24$lang["logging_level_o_3"] = 'Debug'; 25$lang["logging_level_o_4"] = 'Debug+'; 26