1<?php 2$lang["enable"] = "Activer l'authentification multi-factorielle."; 3$lang["optinout"] = "Configurez la façon dont les utilisateurs peuvent utiliser l'authentification multi-facteurs : Opt-in, Opt-out ou obligatoire."; 4$lang["otpsubject"] = 'The subject line used when sending the OTP code.'; 5$lang["otpcontent"] = 'Message envoyé au destinataire. Doit contenir "$otp" qui est remplacé par le code OTP.'; 6$lang["generatorexpiry"] = "Nombre de codes OTP récents autorisés avant qu'un code OTP n'expire. Seulement valide avec les générateurs de codes OTP comme Google Authenticator."; 7$lang["otplength"] = 'Nombre de caractères du code OTP.'; 8$lang["sentexpiry"] = 'Le temps, en minutes, de validité du code OTP.'; 9$lang["loginnotice"] = "Envoyer une notification à l'utilisateurs lors d'une identification avec succès. Les options sont jamais (none), au choix de l'utilisateur (user) ou toujours envoyer un 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