Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/resources/lang/en/auth.php
7459 views
1
<?php
2
3
return [
4
'sign_in' => 'Sign In',
5
'go_to_login' => 'Go to Login',
6
'failed' => 'No account matching those credentials could be found.',
7
8
'forgot_password' => [
9
'label' => 'Forgot Password?',
10
'label_help' => 'Enter your account email address to receive instructions on resetting your password.',
11
'button' => 'Recover Account',
12
],
13
14
'reset_password' => [
15
'button' => 'Reset and Sign In',
16
],
17
18
'two_factor' => [
19
'label' => '2-Factor Token',
20
'label_help' => 'This account requires a second layer of authentication in order to continue. Please enter the code generated by your device to complete this login.',
21
'checkpoint_failed' => 'The two-factor authentication token was invalid.',
22
],
23
24
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
25
'password_requirements' => 'Password must be at least 8 characters in length and should be unique to this site.',
26
'2fa_must_be_enabled' => 'The administrator has required that 2-Factor Authentication be enabled for your account in order to use the Panel.',
27
];
28
29