70 行
2.2 KiB
JavaScript
70 行
2.2 KiB
JavaScript
// "我的" page strings + language switcher.
|
||
module.exports = {
|
||
zh: {
|
||
notLoggedIn: '未登录',
|
||
editProfile: '编辑资料',
|
||
editProfileTitle: '编辑资料',
|
||
changeAvatar: '点击更换头像',
|
||
nickname: '昵称',
|
||
nicknamePlaceholder: '请输入昵称',
|
||
nicknameRequired: '昵称不能为空',
|
||
smartMode: '智能模式',
|
||
smartModeOpen: '已开放',
|
||
free: '免费',
|
||
inUse: '使用中',
|
||
remainDays: '剩余 {days}天',
|
||
notSubscribed: '未订阅',
|
||
goSubscribe: '去订阅 ›',
|
||
menuDevice: '我的设备',
|
||
bound: '已绑定',
|
||
unbound: '未绑定',
|
||
menuHistory: '使用记录',
|
||
menuSubscription: '订阅管理',
|
||
menuHelp: '使用帮助',
|
||
menuContact: '联系我们',
|
||
menuLightInfo: '光疗功效介绍',
|
||
language: '语言 / Language',
|
||
logout: '退出登录',
|
||
logoutConfirmTitle: '退出登录',
|
||
logoutConfirmText: '确定要退出登录吗?',
|
||
unbindConfirmTitle: '确认解绑',
|
||
unbindConfirmText: '解绑后将无法使用该设备,确定要解绑吗?',
|
||
unbindAction: '解绑当前设备',
|
||
unbindDone: '已解绑',
|
||
unbindFailed: '解绑失败'
|
||
},
|
||
en: {
|
||
notLoggedIn: 'Not logged in',
|
||
editProfile: 'Edit',
|
||
editProfileTitle: 'Edit Profile',
|
||
changeAvatar: 'Tap to change avatar',
|
||
nickname: 'Nickname',
|
||
nicknamePlaceholder: 'Enter nickname',
|
||
nicknameRequired: 'Nickname is required',
|
||
smartMode: 'Smart Mode',
|
||
smartModeOpen: 'Available',
|
||
free: 'Free',
|
||
inUse: 'Active',
|
||
remainDays: '{days} days left',
|
||
notSubscribed: 'Not subscribed',
|
||
goSubscribe: 'Subscribe ›',
|
||
menuDevice: 'My Device',
|
||
bound: 'Bound',
|
||
unbound: 'Not bound',
|
||
menuHistory: 'Usage Records',
|
||
menuSubscription: 'Subscription',
|
||
menuHelp: 'Help',
|
||
menuContact: 'Contact Us',
|
||
menuLightInfo: 'Light Therapy Guide',
|
||
language: '语言 / Language',
|
||
logout: 'Log Out',
|
||
logoutConfirmTitle: 'Log Out',
|
||
logoutConfirmText: 'Are you sure you want to log out?',
|
||
unbindConfirmTitle: 'Confirm Unbind',
|
||
unbindConfirmText: 'You will not be able to use this device after unbinding. Continue?',
|
||
unbindAction: 'Unbind current device',
|
||
unbindDone: 'Unbound',
|
||
unbindFailed: 'Unbind failed'
|
||
}
|
||
}
|