Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/resources/lang/en/passwords.php
7459 views
1
<?php
2
3
return [
4
/*
5
|--------------------------------------------------------------------------
6
| Password Reset Language Lines
7
|--------------------------------------------------------------------------
8
|
9
| The following language lines are the default lines which match reasons
10
| that are given by the password broker for a password update attempt
11
| has failed, such as for an invalid token or invalid new password.
12
|
13
*/
14
'password' => 'Passwords must be at least six characters and match the confirmation.',
15
'reset' => 'Your password has been reset!',
16
'sent' => 'We have e-mailed your password reset link!',
17
'token' => 'This password reset token is invalid.',
18
'user' => "We can't find a user with that e-mail address.",
19
];
20
21