feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+46
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Zresetuj hasło',
|
||||
|
||||
'heading' => 'Zapomniałeś hasła?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'wróć do logowania',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Adres e-mail',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'Wyślij e-mail',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'sent' => [
|
||||
'body' => 'Nie otrzymasz e-maila, jeśli konto nie istnieje.',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Zbyt wiele żądań',
|
||||
'body' => 'Spróbuj ponownie za :seconds sekund.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Zresetuj hasło',
|
||||
|
||||
'heading' => 'Resetowanie hasła',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Adres e-mail',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Hasło',
|
||||
'validation_attribute' => 'hasło',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Potwierdź hasło',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Zresetuj hasło',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Zbyt wiele prób resetowania',
|
||||
'body' => 'Spróbuj ponownie za :seconds sekund.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user