52 lines
706 B
PHP
52 lines
706 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'label' => 'Profil',
|
|
|
|
'form' => [
|
|
|
|
'email' => [
|
|
'label' => 'Email',
|
|
],
|
|
|
|
'name' => [
|
|
'label' => 'Nume',
|
|
],
|
|
|
|
'password' => [
|
|
'label' => 'Parola noua',
|
|
],
|
|
|
|
'password_confirmation' => [
|
|
'label' => 'Confirmă parola noua',
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'save' => [
|
|
'label' => 'Salvează modificările',
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'notifications' => [
|
|
|
|
'saved' => [
|
|
'title' => 'Salvat cu succes',
|
|
],
|
|
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'cancel' => [
|
|
'label' => 'înapoi',
|
|
],
|
|
|
|
],
|
|
|
|
];
|