feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Profiel',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mailadres',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Naam',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Nieuw wachtwoord',
|
||||
'validation_attribute' => 'password',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Bevestig nieuw wachtwoord',
|
||||
'validation_attribute' => 'password confirmation',
|
||||
],
|
||||
|
||||
'current_password' => [
|
||||
'label' => 'Huidig wachtwoord',
|
||||
'below_content' => 'Voor de veiligheid, bevestig uw wachtwoord om door te gaan.',
|
||||
'validation_attribute' => 'current password',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Opslaan',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor_authentication' => [
|
||||
'label' => 'Twee-factor-authenticatie (2FA)',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'email_change_verification_sent' => [
|
||||
'title' => 'E-mailadres wijzigingsverzoek verzonden',
|
||||
'body' => 'Er is een verzoek om uw e-mailadres te wijzigen verzonden naar :email. Controleer uw e-mail om de wijziging te verifiëren.',
|
||||
],
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Opgeslagen',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Te veel aanvragen. Probeer het over :seconds seconden opnieuw.',
|
||||
'body' => 'Probeer het over :seconds seconden opnieuw.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Terug',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+36
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'E-mailadres verifiëren',
|
||||
|
||||
'heading' => 'E-mailadres verifiëren',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend_notification' => [
|
||||
'label' => 'Opnieuw verzenden',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'notification_not_received' => 'Geen e-mail ontvangen?',
|
||||
'notification_sent' => 'We hebben een e-mail gestuurd naar :email met instructies om je e-mailadres te verifiëren.',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'notification_resent' => [
|
||||
'title' => 'E-mail opnieuw verzonden.',
|
||||
],
|
||||
|
||||
'notification_resend_throttled' => [
|
||||
'title' => 'Te veel verzendpogingen',
|
||||
'body' => 'Probeer het opnieuw over :seconds seconden.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Inloggen',
|
||||
|
||||
'heading' => 'Inloggen op je account',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'before' => 'of',
|
||||
'label' => 'maak een account aan',
|
||||
],
|
||||
|
||||
'request_password_reset' => [
|
||||
'label' => 'Wachtwoord vergeten?',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mailadres',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Wachtwoord',
|
||||
],
|
||||
|
||||
'remember' => [
|
||||
'label' => 'Onthoud mij',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Inloggen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor' => [
|
||||
|
||||
'heading' => 'Verifieer je identiteit',
|
||||
|
||||
'subheading' => 'Om inloggen te voltooien, moet je je identiteit verifiëren.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'provider' => [
|
||||
'label' => 'Hoe wil je verifiëren?',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Verifiëren',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'failed' => 'Onjuiste inloggegevens.',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Te veel inlogpogingen',
|
||||
'body' => 'Probeer het opnieuw over :seconds seconden.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Wachtwoord opnieuw instellen',
|
||||
|
||||
'heading' => 'Wachtwoord vergeten?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'terug naar inloggen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mailadres',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'E-mail verzenden',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'sent' => [
|
||||
'body' => 'Als uw account niet bestaat, ontvangt u de e-mail niet.',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Te veel pogingen',
|
||||
'body' => 'Probeer het opnieuw over :seconds seconden.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Wachtwoord opnieuw instellen',
|
||||
|
||||
'heading' => 'Wachtwoord opnieuw instellen',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mailadres',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Wachtwoord',
|
||||
'validation_attribute' => 'wachtwoord',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Wachtwoord bevestigen',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Wachtwoord opnieuw instellen',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Te veel resetpogingen',
|
||||
'body' => 'Probeer het opnieuw over :seconds seconden.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Registreren',
|
||||
|
||||
'heading' => 'Registreren',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'before' => 'of',
|
||||
'label' => 'inloggen op je account',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mailadres',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Naam',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Wachtwoord',
|
||||
'validation_attribute' => 'wachtwoord',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Wachtwoord bevestigen',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'label' => 'Registreren',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Te veel registratiepogingen',
|
||||
'body' => 'Probeer het opnieuw over :seconds seconden.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user