52 lines
696 B
PHP
52 lines
696 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'label' => 'Profil',
|
|
|
|
'form' => [
|
|
|
|
'email' => [
|
|
'label' => 'E-postadresse',
|
|
],
|
|
|
|
'name' => [
|
|
'label' => 'Navn',
|
|
],
|
|
|
|
'password' => [
|
|
'label' => 'Nytt passord',
|
|
],
|
|
|
|
'password_confirmation' => [
|
|
'label' => 'Bekreft nytt passord',
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'save' => [
|
|
'label' => 'Lagre endringer',
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'notifications' => [
|
|
|
|
'saved' => [
|
|
'title' => 'Lagret',
|
|
],
|
|
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'cancel' => [
|
|
'label' => 'tilbake',
|
|
],
|
|
|
|
],
|
|
|
|
];
|