login.php 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. return [
  3. 'title' => 'Iniciar sessão',
  4. 'heading' => 'Iniciar sessão',
  5. 'actions' => [
  6. 'register' => [
  7. 'before' => 'ou',
  8. 'label' => 'criar uma conta',
  9. ],
  10. 'request_password_reset' => [
  11. 'label' => 'Esqueceu-se da palavra-passe?',
  12. ],
  13. ],
  14. 'form' => [
  15. 'email' => [
  16. 'label' => 'Endereço de e-mail',
  17. ],
  18. 'password' => [
  19. 'label' => 'Palavra-passe',
  20. ],
  21. 'remember' => [
  22. 'label' => 'Manter sessão',
  23. ],
  24. 'actions' => [
  25. 'authenticate' => [
  26. 'label' => 'Iniciar sessão',
  27. ],
  28. ],
  29. ],
  30. 'messages' => [
  31. 'failed' => 'As credênciais não correspondem aos nossos registos.',
  32. ],
  33. 'notifications' => [
  34. 'throttled' => [
  35. 'title' => 'Muitas tentativas de início de sessão.',
  36. 'body' => 'Por favor, tente novamente em :seconds segundos.',
  37. ],
  38. ],
  39. ];