feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Profil',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-postadresse',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Navn',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Nytt passord',
|
||||
'validation_attribute' => 'passord',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Bekreft nytt passord',
|
||||
'validation_attribute' => 'bekreftelse av passord',
|
||||
],
|
||||
|
||||
'current_password' => [
|
||||
'label' => 'Nåværende passord',
|
||||
'below_content' => 'Av sikkerhetsgrunner, bekreft passordet ditt for å fortsette.',
|
||||
'validation_attribute' => 'nåværende passord',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Lagre endringer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor_authentication' => [
|
||||
'label' => 'Tofaktorautentisering (2FA)',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'email_change_verification_sent' => [
|
||||
'title' => 'Forespørsel om endring av e-postadresse sendt',
|
||||
'body' => 'En forespørsel om å endre e-postadressen din er sendt til :email. Sjekk e-posten din for å bekrefte endringen.',
|
||||
],
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Lagret',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Tilbake',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Bekreft din e-postadresse',
|
||||
|
||||
'heading' => 'Bekreft din e-postadresse',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend_notification' => [
|
||||
'label' => 'Send på nytt',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'notification_not_received' => 'Ikke mottatt e-posten vi sendte?',
|
||||
'notification_sent' => 'Vi har sendt e-post til :email med informasjon om hvordan du bekrefter din e-postadresse.',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'notification_resent' => [
|
||||
'title' => 'Vi har sendt e-post på nytt.',
|
||||
],
|
||||
|
||||
'notification_resend_throttled' => [
|
||||
'title' => 'For mange forsøk på nye sendinger',
|
||||
'body' => 'Vennligst prøv igjen om :seconds sekunder.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Logg inn',
|
||||
|
||||
'heading' => 'Logg inn på konto',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'before' => 'eller',
|
||||
'label' => 'opprett ny konto',
|
||||
],
|
||||
|
||||
'request_password_reset' => [
|
||||
'label' => 'Glemt passordet?',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-postadresse',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Passord',
|
||||
],
|
||||
|
||||
'remember' => [
|
||||
'label' => 'Husk meg',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Logg inn',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor' => [
|
||||
|
||||
'heading' => 'Bekreft identiteten din',
|
||||
|
||||
'subheading' => 'For å fortsette innloggingen må du bekrefte identiteten din.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'provider' => [
|
||||
'label' => 'Hvordan vil du bekrefte?',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Bekreft innlogging',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'failed' => 'Påloggingsinformasjonen stemmer ikke med våre data',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'For mange forsøk på innlogging.',
|
||||
'body' => 'Vennligst prøv igjen om :seconds sekunder.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Tilbakestill ditt passord',
|
||||
|
||||
'heading' => 'Glemt passord?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'tilbake til logg inn',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-postadresse',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'Send e-post',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'sent' => [
|
||||
'body' => 'Hvis kontoen din ikke finnes, vil du ikke motta e-posten.',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'For mange forsøk',
|
||||
'body' => 'Vennligst forsøk igjen om :seconds sekunder.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Tilbakestill passord',
|
||||
|
||||
'heading' => 'Tilbakestill passord',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-postadresse',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Passord',
|
||||
'validation_attribute' => 'passord',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Bekreft passord',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Tilbakestill passord',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'For mange forsøkt på tilbakestilling av passord',
|
||||
'body' => 'Vennligst forsøk igjen om :seconds sekunder.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Registrering',
|
||||
|
||||
'heading' => 'Registrer',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'before' => 'eller',
|
||||
'label' => 'logg inn på konto',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-postadresse',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Navn',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Passord',
|
||||
'validation_attribute' => 'passord',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Bekreft passord',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'label' => 'Registrer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'For mange forsøk på registrering',
|
||||
'body' => 'Vennligst prøv igjen om :seconds sekunder.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user