feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
@@ -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.',
],
],
];