staffAppAuthManageLang.js
1.43 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
export const messages = {
en: {
staffAppAuthManage: {
title: 'Authentication Information',
staffName: 'Staff Name',
authType: 'Authentication Type',
authName: 'Authentication Name',
authId: 'Authentication ID',
authStatus: 'Authentication Status',
authTime: 'Authentication Time',
auth: 'Authenticate',
fetchError: 'Failed to fetch authentication data'
},
addStaffAppAuth: {
title: 'Start Authentication',
authType: 'Authentication Type',
qrcode: 'QR Code',
scanTip: 'Please scan the QR code with WeChat for authentication',
finishScan: 'Scan Completed',
requiredSelect: 'Required, please select authentication type',
wechat: 'WeChat',
qrcodeError: 'Failed to generate QR code'
}
},
zh: {
staffAppAuthManage: {
title: '认证信息',
staffName: '员工名称',
authType: '认证方式',
authName: '认证名称',
authId: '认证ID',
authStatus: '认证状态',
authTime: '认证时间',
auth: '认证',
fetchError: '获取认证数据失败'
},
addStaffAppAuth: {
title: '开始认证',
authType: '认证方式',
qrcode: '二维码',
scanTip: '请用微信扫一扫二维码认证',
finishScan: '扫码完成',
requiredSelect: '必填,请选择认证方式',
wechat: '微信',
qrcodeError: '生成二维码失败'
}
}
}