1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| <?php
| /*
| * 翻译成英语
| */
| return [
| '请输入支付密码' => 'Please enter the payment password',
| '账号已存在' => 'Account already exists',
| '密码必须在6-18位' => 'Password must be 6-18 digits',
| '密码必须包含数字' => 'Password must contain numbers',
| '密码必须包含字母' => 'Password must contain letters',
| '请填写管理员姓名' => 'Please fill in the administrator name',
| '下载中心' => 'Download Center',
| // 发货订单状态
| '全部' => 'All',
| '待支付' => 'Pending Payment',
| '已取消' => 'Cancelled',
| '待发货' => 'Pending Delivery',
| '部分发货' => 'Partially Delivered',
| '已发货' => 'Delivered',
| '部分收货' => 'Partially Received',
| '已收货' => 'Received',
| '已完成' => 'Completed',
| ];
|
|