-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzh_CN.js
More file actions
103 lines (99 loc) · 2.57 KB
/
zh_CN.js
File metadata and controls
103 lines (99 loc) · 2.57 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
const customZhCN = {
home: '首页',
logInToYourAccount: "登录你的帐号",
username: "用户名",
password: "密码",
login: "登录",
newToDrycc: "如果您是Drycc的新用户,请联系管理员",
}
const vantZhCN = {
// vant default
name: '姓名',
tel: '电话',
save: '保存',
confirm: '确认',
cancel: '取消',
delete: '删除',
complete: '完成',
loading: '加载中...',
telEmpty: '请填写电话',
nameEmpty: '请填写姓名',
nameInvalid: '请输入正确的姓名',
confirmDelete: '确定要删除吗',
telInvalid: '请输入正确的手机号',
vanCalendar: {
end: '结束',
start: '开始',
title: '日期选择',
confirm: '确定',
startEnd: '开始/结束',
weekdays: ['日', '一', '二', '三', '四', '五', '六'],
monthTitle: function monthTitle(year, month) {
return year + "\u5E74" + month + "\u6708";
},
rangePrompt: function rangePrompt(maxRange) {
return "\u9009\u62E9\u5929\u6570\u4E0D\u80FD\u8D85\u8FC7 " + maxRange + " \u5929";
}
},
vanContactCard: {
addText: '添加联系人'
},
vanContactList: {
addText: '新建联系人'
},
vanPagination: {
prev: '上一页',
next: '下一页'
},
vanPullRefresh: {
pulling: '下拉即可刷新...',
loosing: '释放即可刷新...'
},
vanSubmitBar: {
label: '合计:'
},
vanCoupon: {
unlimited: '无使用门槛',
discount: function discount(_discount) {
return _discount + "\u6298";
},
condition: function condition(_condition) {
return "\u6EE1" + _condition + "\u5143\u53EF\u7528";
}
},
vanCouponCell: {
title: '优惠券',
tips: '暂无可用',
count: function count(_count) {
return _count + "\u5F20\u53EF\u7528";
}
},
vanCouponList: {
empty: '暂无优惠券',
exchange: '兑换',
close: '不使用优惠券',
enable: '可用',
disabled: '不可用',
placeholder: '请输入优惠码'
},
vanAddressEdit: {
area: '地区',
postal: '邮政编码',
areaEmpty: '请选择地区',
addressEmpty: '请填写详细地址',
postalEmpty: '邮政编码格式不正确',
defaultAddress: '设为默认收货地址',
telPlaceholder: '收货人手机号',
namePlaceholder: '收货人姓名',
areaPlaceholder: '选择省 / 市 / 区'
},
vanAddressEditDetail: {
label: '详细地址',
placeholder: '街道门牌、楼层房间号等信息'
},
vanAddressList: {
add: '新增地址'
}
}
const message = Object.assign(customZhCN, vantZhCN)
export default message