buttons.php
2.22 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
return [
    /*
    |--------------------------------------------------------------------------
    | Buttons Language Lines
    |--------------------------------------------------------------------------
    |
    | The following language lines are used in buttons throughout the system.
    | Regardless where it is placed, a button can be listed here so it is easily
    | found in a intuitive way.
    |
    */
    'backend' => [
        'access' => [
            'users' => [
                'activate'           => '激活',
                'change_password'    => '更改密码',
                'clear_session'      => '清除会话',
                'confirm'             => 'Confirm',
                'deactivate'         => '停用',
                'delete_permanently' => '永久删除',
                'login_as'           => '登录为 :user',
                'resend_email'       => '重新发送确认电子邮件',
                'restore_user'       => '恢复用户',
                'unconfirm'             => 'Un-confirm',
                'unlink' => 'Unlink',
            ],
        ],
        'price'=>[
            'priceRuleType' => [
                'restore' => '恢复',
            ]
        ],
        'shop'=>[
            'assign' => '分配充电柜',
        ]
    ],
    'emails' => [
        'auth' => [
            'confirm_account' => '确认帐户',
            'reset_password'  => '重置密码',
        ],
    ],
    'general' => [
        'cancel' => '取消',
        'continue' => '继续',
        'import' => '导入',
        'crud' => [
            'create' => '创建',
            'delete' => '删除',
            'edit'   => '编辑',
            'update' => '更新',
            'view'   => '查看',
            'info' => '详情',
            'sort' => '排序',
            'activate' => '启用',
            'deactivate' => '禁用',
            'change_password' => '修改密码',
            'accept' => '同意',
            'reject' => '拒绝',
            'batch_restart' => '批量重启',
            'refund' => '退款',
            'closeOrder' => '关闭订单',
            'default' => '设为默认',
        ],
        'save' => '保存',
        'view' => '查看',
    ],
];