register.php 883B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. return [
  3. 'title' => '注册',
  4. 'heading' => '注册',
  5. 'actions' => [
  6. 'login' => [
  7. 'before' => '或者',
  8. 'label' => '登录你的账号',
  9. ],
  10. ],
  11. 'form' => [
  12. 'email' => [
  13. 'label' => '邮箱地址',
  14. ],
  15. 'name' => [
  16. 'label' => '姓名',
  17. ],
  18. 'password' => [
  19. 'label' => '密码',
  20. 'validation_attribute' => '密码',
  21. ],
  22. 'password_confirmation' => [
  23. 'label' => '确认密码',
  24. ],
  25. 'actions' => [
  26. 'register' => [
  27. 'label' => '提交注册',
  28. ],
  29. ],
  30. ],
  31. 'notifications' => [
  32. 'throttled' => [
  33. 'title' => '尝试注册次数过多',
  34. 'body' => '请在 :seconds 秒后重试。',
  35. ],
  36. ],
  37. ];