history.php
1.27 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
<?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' => '為用戶更改密碼',
            'created' => '創建用戶',
            'deactivated' => '停用用戶',
            'deleted' => '已刪除的用戶',
            'deleted_social'      => 'deleted social account',
            'permanently_deleted' => '永久刪除的用戶',
            'updated' => '更新用戶',
            'unconfirmed' => 'un-confirmed user',
            'reactivated' => '重新激活的用戶',
            'restored' => '還原用戶',
        ],
    ],
];