52 lines
701 B
PHP
52 lines
701 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'label' => 'Profil',
|
|
|
|
'form' => [
|
|
|
|
'email' => [
|
|
'label' => 'Mejladress',
|
|
],
|
|
|
|
'name' => [
|
|
'label' => 'Namn',
|
|
],
|
|
|
|
'password' => [
|
|
'label' => 'Nytt lösenord',
|
|
],
|
|
|
|
'password_confirmation' => [
|
|
'label' => 'Bekräfta nytt lösenord',
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'save' => [
|
|
'label' => 'Spara ändringar',
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'notifications' => [
|
|
|
|
'saved' => [
|
|
'title' => 'Sparades',
|
|
],
|
|
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'cancel' => [
|
|
'label' => 'Avbryt',
|
|
],
|
|
|
|
],
|
|
|
|
];
|