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' => 'Redefinir a sua palavra-passe',
'heading' => 'Esqueceu-se da palavra-passe?',
'actions' => [
'login' => [
'label' => 'voltar ao início',
],
],
'form' => [
'email' => [
'label' => 'Endereço de e-mail',
],
'actions' => [
'request' => [
'label' => 'Enviar e-mail',
],
],
],
'notifications' => [
'sent' => [
'body' => 'Se a sua conta não existir, não receberá o e-mail.',
],
'throttled' => [
'title' => 'Muitas solicitações',
'body' => 'Por favor, tente novamente em :seconds segundos.',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Redefinir a sua palavra-passe',
'heading' => 'Redefinir a sua palavra-passe',
'form' => [
'email' => [
'label' => 'Endereço de e-mail',
],
'password' => [
'label' => 'Palavra-passe',
'validation_attribute' => 'palavra-passe',
],
'password_confirmation' => [
'label' => 'Confirmar palavra-passe',
],
'actions' => [
'reset' => [
'label' => 'Redefinir palavra-passe',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Muitas tentativas de redefinição',
'body' => 'Por favor, tente novamente em :seconds segundos.',
],
],
];