f77236aa38
* Apply Laravel coding style * Shift bindings * Shift core files * Shift to Throwable * Add laravel/ui dependency * Shift Eloquent methods * Shift config files * Shift Laravel dependencies * Shift cleanup * Shift test config and references * Applied styleci changes * Applied fixes post shift to laravel 7 Co-authored-by: Shift <shift@laravelshift.com>
15 lines
545 B
PHP
15 lines
545 B
PHP
<?php
|
|
/**
|
|
* Password Reminder 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.
|
|
*/
|
|
return [
|
|
|
|
'password' => '여덟 글자를 넘어야 합니다.',
|
|
'user' => '메일 주소를 가진 사용자가 없습니다.',
|
|
'token' => '비밀번호 재설정 토큰이 이 이메일 주소에 유효하지 않습니다.',
|
|
'sent' => '메일을 보냈습니다.',
|
|
'reset' => '비밀번호를 바꿨습니다.',
|
|
|
|
];
|