52 lines
702 B
PHP
52 lines
702 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'label' => 'Profil',
|
|
|
|
'form' => [
|
|
|
|
'email' => [
|
|
'label' => 'Emailová adresa',
|
|
],
|
|
|
|
'name' => [
|
|
'label' => 'Meno',
|
|
],
|
|
|
|
'password' => [
|
|
'label' => 'Nové heslo',
|
|
],
|
|
|
|
'password_confirmation' => [
|
|
'label' => 'Potvrdiť nové heslo',
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'save' => [
|
|
'label' => 'Uložiť zmeny',
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'notifications' => [
|
|
|
|
'saved' => [
|
|
'title' => 'Uložené',
|
|
],
|
|
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'cancel' => [
|
|
'label' => 'Zrušiť',
|
|
],
|
|
|
|
],
|
|
|
|
];
|