history.php
1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
return [
/*
|--------------------------------------------------------------------------
| History Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain strings associated to the
| system adding lines to the history table.
|
*/
'backend' => [
'none' => 'There is no recent history.',
'none_for_type' => 'There is no history for this type.',
'none_for_entity' => 'There is no history for this :entity.',
'recent_history' => 'Recent History',
'roles' => [
'created' => 'created role',
'deleted' => 'deleted role',
'updated' => 'updated role',
],
'users' => [
'changed_password' => 'changed password for user',
'confirmed' => 'confirmed user',
'created' => 'created user',
'deactivated' => 'deactivated user',
'deleted' => 'deleted user',
'deleted_social' => 'deleted social account',
'permanently_deleted' => 'permanently deleted user',
'updated' => 'updated user',
'unconfirmed' => 'un-confirmed user',
'reactivated' => 'reactivated user',
'restored' => 'restored user',
],
],
];