login.php 710B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. return [
  3. 'title' => '登入',
  4. 'heading' => '登入帳號',
  5. 'form' => [
  6. 'email' => [
  7. 'label' => 'E-Mail 位址',
  8. ],
  9. 'password' => [
  10. 'label' => '密碼',
  11. ],
  12. 'remember' => [
  13. 'label' => '記住我',
  14. ],
  15. 'actions' => [
  16. 'authenticate' => [
  17. 'label' => '登入',
  18. ],
  19. ],
  20. ],
  21. 'messages' => [
  22. 'failed' => '所提供的帳號密碼與資料庫中的記錄不相符。',
  23. ],
  24. 'notifications' => [
  25. 'throttled' => [
  26. 'title' => '嘗試登入次數過多。請在 :seconds 秒後重試。',
  27. ],
  28. ],
  29. ];