setting.js
1.03 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
const settingEn = {
setting: {
language: 'Language',
bindWechat: 'Binding Wechat',
freeLogin: 'Free Login',
resetPassword: 'Reset Password',
privacyPolicy: 'Privacy Policy',
serviceAgreement: 'Service Agreement',
questionAndFeedback: 'Question Feedback',
chinese: 'Chinese',
english: 'English',
fontSize: 'FontSize',
superFontSize: 'Super FontSize',
bigFontSize: 'Big FontSize',
standardFontSize: 'Standard FontSize',
smallFontSize: 'Smaill FontSize',
},
}
const settingZh = {
setting: {
language: '多语言',
bindWechat: '微信绑定',
freeLogin: '免登录',
resetPassword: '重置密码',
privacyPolicy: '隐私政策',
serviceAgreement: '服务协议',
questionAndFeedback: '问题及反馈',
chinese: '中文',
english: '英文',
fontSize: '字体大小',
superFontSize: '特大字体',
bigFontSize: '大字体',
standardFontSize: '标准字体',
smallFontSize: '小字体',
},
}
export default {
settingEn,
settingZh
};