xref: /plugin/twofactor/lang/en/lang.php (revision 163ac707d28a7cab09d4545eca233c5a5a0f9969)
1*163ac707SMichael Wilmes<?php
2*163ac707SMichael Wilmes$lang['twofactor_login'] = "Two Factor Authentication Token<br />(leave blank if not using)<br />";
3*163ac707SMichael Wilmes$lang['twofactor_optin'] = "Use two factor authentication";
4*163ac707SMichael Wilmes$lang['twofactor_makegasecret'] = "Use Google Authenticator";
5*163ac707SMichael Wilmes$lang['twofactor_killgasecret'] = "Revoke Google Authenticator";
6*163ac707SMichael Wilmes$lang['twofactor_phone'] = "Cellphone Number";
7*163ac707SMichael Wilmes$lang['twofactor_provider'] = "Cell Provider";
8*163ac707SMichael Wilmes$lang['twofactor_mustusega'] = "This wiki requires the use of Google Authenticator to login.";
9*163ac707SMichael Wilmes$lang['twofactor_invalidotp'] = "The code supplied is incorrect or expired.  Please try again. If needed, click the link to resend your code.";
10*163ac707SMichael Wilmes$lang['twofactor_failedgasetup'] = "The code provided did not work.  Google Authenticator is not enabled for this account.";
11*163ac707SMichael Wilmes$lang['twofactor_passedgasetup'] = "Google Authenticator is now enabled for this account.";
12*163ac707SMichael Wilmes$lang['twofactor_scanwithga'] = "Scan with Google Authenticator";
13*163ac707SMichael Wilmes$lang['twofactor_verifyga'] = "You need to verify that Google Authenticator is working.";
14*163ac707SMichael Wilmes$lang['twofactor_codefromga'] = "Enter code from Google Authenticator";
15*163ac707SMichael Wilmes$lang['twofactor_updated'] = "Two factor configuration updated.";
16*163ac707SMichael Wilmes$lang['twofactor_gaready'] = "Google Authenticator is configured.";
17*163ac707SMichael Wilmes$lang['twofactor_otplogin'] = "Verification Code";
18*163ac707SMichael Wilmes$lang['twofactor_mandatory'] = "This wiki requires the use of two factor authentication.  You must configure either Google Authenticator or your text-capable cell number to continue.";
19*163ac707SMichael Wilmes$lang['btn_submit'] = "Submit";
20*163ac707SMichael Wilmes$lang['btn_resend'] = "Resend Code";
21*163ac707SMichael Wilmes$lang['btn_quit'] = "Quit";
22*163ac707SMichael Wilmes
23*163ac707SMichael Wilmes$lang['menu'] = 'TwoFactor Admin';
24*163ac707SMichael Wilmes$lang['noauth']      = '(user authentication not available)';
25*163ac707SMichael Wilmes$lang['nosupport']   = '(user management not supported)';
26*163ac707SMichael Wilmes$lang['badauth']     = 'invalid auth mechanism';     // should never be displayed!
27*163ac707SMichael Wilmes$lang['user_id']     = 'User';
28*163ac707SMichael Wilmes$lang['user_pass']   = 'Password';
29*163ac707SMichael Wilmes$lang['user_name']   = 'Real Name';
30*163ac707SMichael Wilmes$lang['user_mail']   = 'Email';
31*163ac707SMichael Wilmes$lang['reset_selected'] = 'Reset Selected';
32*163ac707SMichael Wilmes$lang['search']      = 'Search';
33*163ac707SMichael Wilmes$lang['search_prompt'] = 'Perform search';
34*163ac707SMichael Wilmes$lang['clear']       = 'Reset Search Filter';
35*163ac707SMichael Wilmes$lang['filter']      = 'Filter';
36*163ac707SMichael Wilmes$lang['start']  = 'start';
37*163ac707SMichael Wilmes$lang['prev']   = 'previous';
38*163ac707SMichael Wilmes$lang['next']   = 'next';
39*163ac707SMichael Wilmes$lang['last']   = 'last';
40*163ac707SMichael Wilmes$lang['summary']     = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.';
41*163ac707SMichael Wilmes$lang['nonefound']   = 'No users found. %d users total.';
42*163ac707SMichael Wilmes$lang['reset_ok']   = '%d users reset';
43*163ac707SMichael Wilmes$lang['reset_not_self']   = "You can't reset yourself.";
44*163ac707SMichael Wilmes$lang['no_purpose']   = "You do not have the twofactor plugin configured to store user-bound data, so there is nothing to administer.";
45