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,42 @@
<?php
return [
'title' => 'Ponastavite svoje geslo',
'heading' => 'Ste pozabili geslo?',
'actions' => [
'login' => [
'label' => 'nazaj na prijavo',
],
],
'form' => [
'email' => [
'label' => 'E-poštni naslov',
],
'actions' => [
'request' => [
'label' => 'Pošlji e-pošto',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Preveč zahtevkov',
'body' => 'Prosimo, poskusite znova čez :seconds sekund.',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Ponastavite svoje geslo',
'heading' => 'Ponastavite svoje geslo',
'form' => [
'email' => [
'label' => 'E-poštni naslov',
],
'password' => [
'label' => 'Geslo',
'validation_attribute' => 'geslo',
],
'password_confirmation' => [
'label' => 'Potrdite geslo',
],
'actions' => [
'reset' => [
'label' => 'Ponastavi geslo',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Preveč poskusov ponastavitve',
'body' => 'Poskusite znova čez :seconds sekund.',
],
],
];