23 lines
944 B
PHP
23 lines
944 B
PHP
<?php
|
||
|
||
return [
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| 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, such as for an invalid token or invalid new password.
|
||
|
|
||
*/
|
||
|
||
'password' => 'パスワードは最低6文字で確認と一致している必要があります。',
|
||
'user' => "そのメールアドレスを持つユーザーが見つかりません。",
|
||
'token' => 'このパスワードリセットトークンは無効です。',
|
||
'sent' => 'あなたのパスワードリセット用のURLをメールで送りました!',
|
||
'reset' => 'あなたのパスワードはリセットされました!',
|
||
|
||
];
|