mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-29 12:04:44 +02:00
20 lines
906 B
PHP
20 lines
906 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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.
|
|
|
|
|
*/
|
|
'password' => 'パスワードは6文字以上で確認と一致しなければなりません。',
|
|
'reset' => 'パスワードを再設定しました。',
|
|
'sent' => 'パスワードの再設定URLをメールアドレス宛に送信しました。',
|
|
'token' => 'このパスワードの再設定トークンは無効です。',
|
|
'user' => '入力されたメールアドレスのユーザーは見つかりません。',
|
|
];
|