21 lines
859 B
PHP
21 lines
859 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Password Reset Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are the default lines which match reasons
|
|
| that are given by the password broker for a password update attempt
|
|
| has failed, such as for an invalid token or invalid new password.
|
|
|
|
|
*/
|
|
|
|
return [
|
|
'reset' => 'رمز عبور شما بازگردانی شد!',
|
|
'sent' => 'لینک بازگردانی رمز عبور به ایمیل شما ارسال شد.',
|
|
'throttled' => 'پیش از تلاش مجدد کمی صبر کنید.',
|
|
'token' => 'مشخصهی بازگردانی رمز عبور معتبر نیست.',
|
|
'user' => 'ما کاربری با این نشانی ایمیل نداریم!',
|
|
];
|