| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
-
- return [
-
- 'title' => 'Prihlásenie',
-
- 'heading' => 'Prihláste sa',
-
- 'actions' => [
-
- 'register' => [
- 'before' => 'alebo',
- 'label' => 'si založte účet',
- ],
-
- 'request_password_reset' => [
- 'label' => 'Zabudnuté heslo?',
- ],
-
- ],
-
- 'form' => [
-
- 'email' => [
- 'label' => 'Emailová adresa',
- ],
-
- 'password' => [
- 'label' => 'Heslo',
- ],
-
- 'remember' => [
- 'label' => 'Zapamätať si prihlásenie',
- ],
-
- 'actions' => [
-
- 'authenticate' => [
- 'label' => 'Prihlásiť sa',
- ],
-
- ],
-
- ],
-
- 'messages' => [
-
- 'failed' => 'Zadané údaje sú nesprávne.',
-
- ],
-
- 'notifications' => [
-
- 'throttled' => [
- 'title' => 'Príliš veľa pokusov o prihlásenie',
- 'body' => 'Prosím počkajte :seconds sekúnd.',
- ],
-
- ],
-
- ];
|