52 lines
724 B
PHP
52 lines
724 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'label' => 'Perfil',
|
|
|
|
'form' => [
|
|
|
|
'email' => [
|
|
'label' => 'Endereço de e-mail',
|
|
],
|
|
|
|
'name' => [
|
|
'label' => 'Nome',
|
|
],
|
|
|
|
'password' => [
|
|
'label' => 'Nova palavra-passe',
|
|
],
|
|
|
|
'password_confirmation' => [
|
|
'label' => 'Confirmar nova palavra-passe',
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'save' => [
|
|
'label' => 'Guardar alterações',
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'notifications' => [
|
|
|
|
'saved' => [
|
|
'title' => 'Guardado',
|
|
],
|
|
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'cancel' => [
|
|
'label' => 'Cancelar',
|
|
],
|
|
|
|
],
|
|
|
|
];
|