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' => '没有最近的历史。',
'none_for_type' => '没有此类型的历史。',
'none_for_entity' => '没有 :entity 的历史。',
'recent_history' => '最近的历史',
'roles' => [
'created' => '创建了角色',
'deleted' => '删除了角色',
'updated' => '更新了角色',
],
'users' => [
'changed_password' => '更改了用户密码',
'confirmed' => 'confirmed user',
'created' => '创建了用户',
'deactivated' => '停用了用户',
'deleted' => '删除了用户',
'deleted_social' => 'deleted social account',
'permanently_deleted' => '永久删除了用户',
'updated' => '更新了用户',
'unconfirmed' => 'un-confirmed user',
'reactivated' => '重新激活了用户',
'restored' => '还原了用户',
],
],
];