xref: /plugin/twofactor/lang/en/lang.php (revision bbe22a6a87dd9db724f864d111d35d715e39a4e1)
1<?php
2# User menu text
3$lang['btn_twofactor_profile'] = 'Two Factor Settings';
4
5# Two Factor profile header and settings
6$lang['settings'] = "Two Factor Settings";
7$lang['twofactor_optin'] = "Use two factor authentication";
8$lang['twofactor_notify'] = "Send notification upon sucessful login to default device";
9$lang['defaultmodule'] = "Default way to receive a code";
10$lang['useallotp'] = "*Use All*";
11$lang['verify_password'] = "Confirm your password";
12$lang['btn_quit'] = "Quit";
13$lang['btn_return'] = "Return to content";
14
15$lang['js']['reset_confirm'] = 'Do you really want to reset the two factor setup of this user?';
16
17# Messages displayed by menu
18$lang['updated'] = "Two factor configuration updated.";
19$lang['not_configured_notice'] = "You have enabled two factor authentication, but no providers are properly configured. Please complete the configuration of at least one provider or disable two factor authentication.";
20
21$lang['providers'] = 'Provider Configuration';
22$lang['defaultprovider'] = 'Default Provider';
23$lang['optout'] = 'I don\'t want to use the more secure two-factor authentication.';
24$lang['btn_confirm'] = 'Confirm';
25
26# Text used at login
27$lang['twofactor_login'] = "Two Factor Authentication Token<br />(leave blank if not using)<br />";
28$lang['mustusetoken'] = "This wiki requires the use of a token provider such as Google Authenticator to login.";
29
30# Text used at OTP login screen
31$lang['twofactor_otplogin'] = "Verification Code";
32$lang['twofactor_useallmods'] = "Resend OTP using all configured options";
33$lang['twofactor_invalidotp'] = "The code supplied is incorrect or expired.  Please try again. If needed, click the button to resend your code.";
34$lang['btn_login'] = "Complete Login";
35$lang['btn_resend'] = "Resend Code";
36
37# LogLog text
38# 'logged in, %s'
39$lang['requires_otp'] = "requires OTP code";
40# 'logged in, %s'
41$lang['2fa_mandatory'] = "redirected to 2FA for mandatory setup";
42# 'logged in %s'
43$lang['token_ok'] = "using correct token";
44# 'failed %s'
45$lang['no_tokens'] = "token login, no tokens configured";
46# 'failed %s'
47$lang['token_mismatch'] = "token login, no token match";
48# 'logged off, %s'
49$lang['quit_otp'] = "quit OTP screen";
50# 'logged in %s'
51$lang['otp_ok'] = "using OTP screen";
52# 'failed OTP login, %s'
53$lang['otp_mismatch'] = "bad code";
54
55# Administrative text
56$lang['menu'] = 'TwoFactor Admin';
57$lang['noauth']      = 'Unable to administer TwoFactor: User authentication module not available.';
58$lang['nosupport']   = 'Unable to administer TwoFactor: User management not supported via authentication module.';
59$lang['badauth']     = 'invalid auth mechanism';     // should never be displayed!
60$lang['user_id']     = 'User';
61$lang['user_pass']   = 'Password';
62$lang['user_name']   = 'Real Name';
63$lang['user_mail']   = 'Email';
64$lang['action'] = 'Action';
65$lang['reset'] = 'Reset';
66$lang['reset_selected'] = 'Reset Selected';
67$lang['search']      = 'Search';
68$lang['search_prompt'] = 'Perform search';
69$lang['clear']       = 'Reset Search Filter';
70$lang['filter']      = 'Filter';
71$lang['start']  = 'start';
72$lang['prev']   = 'previous';
73$lang['next']   = 'next';
74$lang['last']   = 'last';
75$lang['summary']     = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.';
76$lang['nonefound']   = 'No users found. %d users total.';
77$lang['reset_ok']   = '%d users reset';
78$lang['reset_not_self']   = "You can't reset yourself.";
79$lang['no_purpose']   = "The TwoFactor plugin depends on the Attribute helper plugin being installed. Without the Attrubute plugin, TwoFactor cannot store data and will not function.";
80