feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Profil',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mail',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Navn',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Ny adgangskode',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Bekræft ny adgangskode',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Gem ændringer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Gemt',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Annuller',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Bekræft din e-mail',
|
||||
|
||||
'heading' => 'Bekræft din e-mail',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend_notification' => [
|
||||
'label' => 'Gensend',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'notification_not_received' => 'Har ikke modtaget den e-mail, vi sendte?',
|
||||
'notification_sent' => 'Vi har sendt en e-mail til :email med instruktioner om, hvordan du verificerer din e-mail.',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'notification_resent' => [
|
||||
'title' => 'Vi har sendt e-mailen igen.',
|
||||
],
|
||||
|
||||
'notification_resend_throttled' => [
|
||||
'title' => 'For mange forsøg på at sende igen',
|
||||
'body' => 'Prøv igen om :seconds sekunder.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Log ind',
|
||||
|
||||
'heading' => 'Log ind på din konto',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'before' => 'eller',
|
||||
'label' => 'Opret en konto',
|
||||
],
|
||||
|
||||
'request_password_reset' => [
|
||||
'label' => 'Glemt din adgangskode?',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mail',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Adgangskode',
|
||||
],
|
||||
|
||||
'remember' => [
|
||||
'label' => 'Husk mig',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Log ind',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'failed' => 'Den adgangskode, du har indtastet, er forkert.',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'For mange loginforsøg. Prøv venligst igen om :seconds sekunder.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Nulstil din adgangskode',
|
||||
|
||||
'heading' => 'Glemt din adgangskode?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'Tilbage til login',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mail',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'Send e-mail',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'For mange forsøg',
|
||||
'body' => 'Prøv igen om :seconds sekunder.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Nulstil din adgangskode',
|
||||
|
||||
'heading' => 'Nulstil din adgangskode',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mail',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Adgangskode',
|
||||
'validation_attribute' => 'Adgangskode',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Bekræft adgangskode',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Nulstil adgangskode',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'For mange forsøg på nulstilling',
|
||||
'body' => 'Prøv igen om :seconds sekunder.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Opret dig',
|
||||
|
||||
'heading' => 'Opret konto',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'before' => 'eller',
|
||||
'label' => 'Log ind på din konto',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-mail',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Navn',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Adgangskode',
|
||||
'validation_attribute' => 'adgangskode',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Bekræft adgangskode',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'label' => 'Opret konto',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'For mange forsøg',
|
||||
'body' => 'Prøv igen om :seconds sekunder.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'field' => [
|
||||
'label' => 'Global søgning',
|
||||
'placeholder' => 'Søg',
|
||||
],
|
||||
|
||||
'no_results_message' => 'Ingen søgeresultater fundet.',
|
||||
|
||||
];
|
||||
+55
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'direction' => 'ltr',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'billing' => [
|
||||
'label' => 'Administrer abonnementer',
|
||||
],
|
||||
|
||||
'logout' => [
|
||||
'label' => 'Log ud',
|
||||
],
|
||||
|
||||
'open_database_notifications' => [
|
||||
'label' => 'Åbn notifikationer',
|
||||
],
|
||||
|
||||
'open_user_menu' => [
|
||||
'label' => 'Brugermenu',
|
||||
],
|
||||
|
||||
'sidebar' => [
|
||||
|
||||
'collapse' => [
|
||||
'label' => 'Skjul sidebjælken',
|
||||
],
|
||||
|
||||
'expand' => [
|
||||
'label' => 'Udvid sidebjælken',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'theme_switcher' => [
|
||||
|
||||
'dark' => [
|
||||
'label' => 'Skift til mørk tilstand',
|
||||
],
|
||||
|
||||
'light' => [
|
||||
'label' => 'Skift til lys tilstand',
|
||||
],
|
||||
|
||||
'system' => [
|
||||
'label' => 'Skift til systemtilstand',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Dashboard',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'filter' => [
|
||||
|
||||
'label' => 'Filtrer',
|
||||
|
||||
'modal' => [
|
||||
|
||||
'heading' => 'Filter',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'apply' => [
|
||||
|
||||
'label' => 'Anvend',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Gem ændringer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Gemt',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Opret :label',
|
||||
|
||||
'breadcrumb' => 'Opret',
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Annuller',
|
||||
],
|
||||
|
||||
'create' => [
|
||||
'label' => 'Opret',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Opret & opret en mere',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => 'Oprettet',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Rediger :label',
|
||||
|
||||
'breadcrumb' => 'Rediger',
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Annuller',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => 'Gem ændringer',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'content' => [
|
||||
|
||||
'tab' => [
|
||||
'label' => 'Rediger',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Gemt',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'breadcrumb' => 'Liste',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Vis :label',
|
||||
|
||||
'breadcrumb' => 'Vis',
|
||||
|
||||
'content' => [
|
||||
|
||||
'tab' => [
|
||||
'label' => 'Vis',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'logout' => [
|
||||
'label' => 'Log ud',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'welcome' => 'Velkommen',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'open_documentation' => [
|
||||
'label' => 'Dokumentation',
|
||||
],
|
||||
|
||||
'open_github' => [
|
||||
'label' => 'GitHub',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user