feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
+46
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Salasana hukassa?',
|
||||
|
||||
'heading' => 'Salasana hukassa?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'takaisin kirjautumiseen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Sähköpostiosoite',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'Lähetä sähköposti',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'sent' => [
|
||||
'body' => 'Jos tiliä ei ole olemassa, et vastaanota sähköpostia.',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Liian monta pyyntöä',
|
||||
'body' => 'Yritä uudelleen :seconds sekunnin kuluttua.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Palauta salasana',
|
||||
|
||||
'heading' => 'Palauta salasana',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Sähköpostiosoite',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Salasana',
|
||||
'validation_attribute' => 'salasana',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Vahvista salasana',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Palauta salasana',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Liian monta palautuksen yritystä',
|
||||
'body' => 'Yritä uudelleen :seconds sekunnin kuluttua.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user