[WIP] Refactor project

This commit is contained in:
Ludovic CANDELLIER
2021-05-21 00:21:05 +02:00
parent 4ce0fa942d
commit b50f50ea62
347 changed files with 14104 additions and 1608 deletions

View File

@@ -0,0 +1,47 @@
<?php
return [
'title' => 'Users',
'returntolist' => 'Users list',
'save' => 'Save',
'informations' => 'Informations',
'status' => 'Status',
'active' => 'Enabled',
'inactive' => 'Disabled',
'lastname' => 'Last name',
'firstname' => 'First name',
'email' => 'E-mail',
'roles' => 'Role',
'successadd' => 'The user has been correctly added.',
'successmod' => 'The user has been correctly modified.',
'newpassword' => 'Your password has been saved.',
'create' => [
'title' => 'Add a user',
'help' => 'The user will receive an invitation by e-mail to login in which it will allow him to enter his new password',
],
'edit' => [
'title' => 'Edit a user',
],
'list' => [
'title' => 'User list',
'id' => 'Id',
'state' => 'Status',
'lastname' => 'Last name',
'firstname' => 'First name',
'email' => 'E-mail',
'roles' => 'Role',
'creationdate' => 'Creation date',
'lastconnect' => 'Last log',
'confirmdelete' => 'Do you confirm that you want to delete this user ?',
'deletesuccess' => 'The user has been correctly deleted',
],
'profile' => [
'title' => 'Your profile',
'subscribedsince' => 'Member since :date ( :since )',
'avatar' => 'Profile image',
'delavatar' => 'Remove the profile image',
'confirmdelavatar' => 'Remove the profile image ?',
'successdelavatar' => 'Profile image has been removed',
'successupdate' => 'The profile has been correctly updated',
],
];