mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-01-17 13:18:21 +01:00
23 lines
1014 B
PHP
23 lines
1014 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' => 'メールアドレスのアカウントが存在していた場合、パスワード再設定リンクをメールで送信しました。',
|
|
'token' => 'このパスワード再設定トークンは無効です。',
|
|
'user' => "このメールアドレスに一致するユーザーを見つけることが出来ませんでした。",
|
|
|
|
];
|