52 lines
692 B
PHP
52 lines
692 B
PHP
<?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',
|
|
],
|
|
|
|
],
|
|
|
|
];
|