login.php 991B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. return [
  3. 'title' => 'Prihlásenie',
  4. 'heading' => 'Prihláste sa',
  5. 'actions' => [
  6. 'register' => [
  7. 'before' => 'alebo',
  8. 'label' => 'si založte účet',
  9. ],
  10. 'request_password_reset' => [
  11. 'label' => 'Zabudnuté heslo?',
  12. ],
  13. ],
  14. 'form' => [
  15. 'email' => [
  16. 'label' => 'Emailová adresa',
  17. ],
  18. 'password' => [
  19. 'label' => 'Heslo',
  20. ],
  21. 'remember' => [
  22. 'label' => 'Zapamätať si prihlásenie',
  23. ],
  24. 'actions' => [
  25. 'authenticate' => [
  26. 'label' => 'Prihlásiť sa',
  27. ],
  28. ],
  29. ],
  30. 'messages' => [
  31. 'failed' => 'Zadané údaje sú nesprávne.',
  32. ],
  33. 'notifications' => [
  34. 'throttled' => [
  35. 'title' => 'Príliš veľa pokusov o prihlásenie',
  36. 'body' => 'Prosím počkajte :seconds sekúnd.',
  37. ],
  38. ],
  39. ];