mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
14 lines
357 B
PHP
14 lines
357 B
PHP
<?php
|
|
|
|
return [
|
|
'change_type' => [
|
|
\App\Models\UsernameChangeLog::CHANGE_TYPE_USER => 'Utente',
|
|
\App\Models\UsernameChangeLog::CHANGE_TYPE_ADMIN => 'Amministratore',
|
|
],
|
|
'labels' => [
|
|
'username_old' => 'Vecchio nome utente',
|
|
'username_new' => 'Nuovo nome utente',
|
|
'change_type' => 'Cambia tipo',
|
|
],
|
|
];
|