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