Last active
October 10, 2017 01:22
-
-
Save sutara79/5fe0918499d5698606dcd6850d429ade to your computer and use it in GitHub Desktop.
Laravel 5.4, 5.5 日本語メッセージ: パスワード再設定
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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' => "メールアドレスに一致するユーザーが存在しません。", | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment