|
| 1 | +<?php |
| 2 | + |
| 3 | +return [ |
| 4 | + |
| 5 | + /* |
| 6 | + |-------------------------------------------------------------------------- |
| 7 | + | Authentication Language Lines |
| 8 | + |-------------------------------------------------------------------------- |
| 9 | + | |
| 10 | + | The following language lines are used during authentication for various |
| 11 | + | messages that we need to display to the user. You are free to modify |
| 12 | + | these language lines according to your application's requirements. |
| 13 | + | |
| 14 | + */ |
| 15 | + 'failed' => '用户名或密码错误。', |
| 16 | + 'throttle' => '您尝试的登录次数过多,请 :seconds 秒后再试。', |
| 17 | + 'password' => '密码错误', |
| 18 | + |
| 19 | + 'full_name' => '姓名', |
| 20 | + 'email' => '邮箱', |
| 21 | + 'confirm_password' => '确认密码', |
| 22 | + 'remember_me' => '记住我', |
| 23 | + 'sign_in' => '登录', |
| 24 | + 'sign_out' => '退出', |
| 25 | + 'register' => '注册', |
| 26 | + |
| 27 | + 'login' => [ |
| 28 | + 'title' => '登录以开始会话', |
| 29 | + 'forgot_password' => '忘记密码?', |
| 30 | + ], |
| 31 | + |
| 32 | + 'registration' => [ |
| 33 | + 'title' => '创建新账号', |
| 34 | + 'i_agree' => '我同意', |
| 35 | + 'terms' => '条款', |
| 36 | + 'have_membership' => '已有账号', |
| 37 | + ], |
| 38 | + |
| 39 | + 'forgot_password' => [ |
| 40 | + 'title' => '您忘记密码了吗?在这里可以重置您的密码。', |
| 41 | + 'send_pwd_reset' => '发送重置密码邮件', |
| 42 | + ], |
| 43 | + |
| 44 | + 'reset_password' => [ |
| 45 | + 'title' => '您还差一步即可设置新密码,立即重置密码。', |
| 46 | + 'reset_pwd_btn' => '重置密码', |
| 47 | + ], |
| 48 | + |
| 49 | + 'confirm_passwords' => [ |
| 50 | + 'title' => '在继续之前请确认您的密码。', |
| 51 | + 'forgot_your_password' => '忘记密码?', |
| 52 | + ], |
| 53 | + |
| 54 | + 'verify_email' => [ |
| 55 | + 'title' => '验证您的邮箱', |
| 56 | + 'success' => '已重新发送验证邮件到您的邮箱', |
| 57 | + 'notice' => '在继续之前,请在邮箱查收验证邮件。如果您未收到,', |
| 58 | + 'another_req' => '点击这里重新发送', |
| 59 | + ], |
| 60 | + |
| 61 | + 'emails' => [ |
| 62 | + 'password' => [ |
| 63 | + 'reset_link' => '点击这里重置密码', |
| 64 | + ], |
| 65 | + ], |
| 66 | +]; |
0 commit comments