feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Profil',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Emailová adresa',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Meno',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Nové heslo',
|
||||
'validation_attribute' => 'heslo',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Potvrdiť nové heslo',
|
||||
'validation_attribute' => 'potvrdenie hesla',
|
||||
],
|
||||
|
||||
'current_password' => [
|
||||
'label' => 'Aktuálne heslo',
|
||||
'below_content' => 'Z dôvodu bezpečnosti potvrďte svoje heslo pre pokračovanie.',
|
||||
'validation_attribute' => 'aktuálne heslo',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Uložiť zmeny',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor_authentication' => [
|
||||
'label' => 'Dvojfaktorové overenie (2FA)',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'email_change_verification_sent' => [
|
||||
'title' => 'Požiadavka na zmenu e-mailovej adresy bola odoslaná',
|
||||
'body' => 'Požiadavka na zmenu Vašej e-mailovej adresy bola odoslaná na :email. Skontrolujte si e-mail a overte zmenu.',
|
||||
],
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Uložené',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Zrušiť',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Potvrďte svoju emailovú adresu',
|
||||
|
||||
'heading' => 'Potvrďte svoju emailovú adresu',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend_notification' => [
|
||||
'label' => 'Odoslať znovu',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'notification_not_received' => 'Nedostali ste email?',
|
||||
'notification_sent' => 'Poslali sme email na adresu :email s inštrukciami na overenie emailovej adresy.',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'notification_resent' => [
|
||||
'title' => 'Znovu sme odoslali email.',
|
||||
],
|
||||
|
||||
'notification_resend_throttled' => [
|
||||
'title' => 'Príliš veľa pokusov',
|
||||
'body' => 'Vyskúšajte to znovu o :seconds sekúnd.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,85 @@
|
||||
<?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',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor' => [
|
||||
|
||||
'heading' => 'Overte svoju identitu',
|
||||
|
||||
'subheading' => 'Na pokračovanie prihlásenia musíte overiť svoju identitu.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'provider' => [
|
||||
'label' => 'Ako si želáte overiť svoju identitu?',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Potvrdiť prihlásenie',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'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.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Obnovte svoje heslo',
|
||||
|
||||
'heading' => 'Zabudli ste svoje heslo?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'späť na prihlásenie',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Emailová adresa',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'Odoslať email',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'sent' => [
|
||||
'body' => 'Ak Váš účet neexistuje, e-mail nedostanete.',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Príliš veľa pokusov',
|
||||
'body' => 'Prosím skúste to znovu o :seconds sekúnd.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Obnovte svoje heslo',
|
||||
|
||||
'heading' => 'Obnovte svoje heslo',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Emailová adresa',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Heslo',
|
||||
'validation_attribute' => 'heslo',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Potvrdenie hesla',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Obnoviť heslo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Príliš veľa pokusov',
|
||||
'body' => 'Prosím skúste to znovu o :seconds sekúnd.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Registrácia',
|
||||
|
||||
'heading' => 'Registrujte sa',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'before' => 'alebo',
|
||||
'label' => 'sa prihláste do svojho účtu',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Emailová adresa',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Meno',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Heslo',
|
||||
'validation_attribute' => 'heslo',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Potvrdenie hesla',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'label' => 'Prihlásiť sa',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Príliš veľa pokusov o registráciu',
|
||||
'body' => 'Prosím vyskúšajte to o :seconds sekúnd.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user