Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/resources/lang/en/dashboard/account.php
7460 views
1
<?php
2
3
return [
4
'email' => [
5
'title' => 'Update your email',
6
'updated' => 'Your email address has been updated.',
7
],
8
'password' => [
9
'title' => 'Change your password',
10
'requirements' => 'Your new password should be at least 8 characters in length.',
11
'updated' => 'Your password has been updated.',
12
],
13
'two_factor' => [
14
'button' => 'Configure 2-Factor Authentication',
15
'disabled' => 'Two-factor authentication has been disabled on your account. You will no longer be prompted to provide a token when logging in.',
16
'enabled' => 'Two-factor authentication has been enabled on your account! From now on, when logging in, you will be required to provide the code generated by your device.',
17
'invalid' => 'The token provided was invalid.',
18
'setup' => [
19
'title' => 'Setup two-factor authentication',
20
'help' => 'Can\'t scan the code? Enter the code below into your application:',
21
'field' => 'Enter token',
22
],
23
'disable' => [
24
'title' => 'Disable two-factor authentication',
25
'field' => 'Enter token',
26
],
27
],
28
];
29
30