mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-15 05:00:49 +08:00
14 lines
381 B
PHP
14 lines
381 B
PHP
<?php
|
|
|
|
return [
|
|
'change_type' => [
|
|
\App\Models\UsernameChangeLog::CHANGE_TYPE_USER => 'Utilisateur',
|
|
\App\Models\UsernameChangeLog::CHANGE_TYPE_ADMIN => 'Administrateur',
|
|
],
|
|
'labels' => [
|
|
'username_old' => 'Ancien nom d\'utilisateur',
|
|
'username_new' => 'Nouveau nom d\'utilisateur',
|
|
'change_type' => 'Changer le type',
|
|
],
|
|
];
|