feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+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.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user