44 行
1.4 KiB
JavaScript
44 行
1.4 KiB
JavaScript
// "首页" (index) page strings.
|
|
module.exports = {
|
|
zh: {
|
|
noDevice: '还没有绑定设备',
|
|
addDevice: '扫码添加设备',
|
|
myDevice: '我的设备',
|
|
connected: '已连接',
|
|
disconnected: '未连接',
|
|
reconnect: '重新连接',
|
|
smartRemain: '智能模式 · 剩余{days}天',
|
|
notSubscribed: '未订阅智能模式',
|
|
smartOpen: '智能模式已开放',
|
|
start: '开始使用',
|
|
deviceManage: '设备管理',
|
|
connectFailed: '连接失败',
|
|
unbindAction: '解绑当前设备',
|
|
unbindConfirmTitle: '确认解绑',
|
|
unbindConfirmText: '解绑后将无法使用该设备,确定要解绑吗?',
|
|
unbindLoading: '解绑中...',
|
|
unbindDone: '已解绑',
|
|
unbindFailed: '解绑失败'
|
|
},
|
|
en: {
|
|
noDevice: 'No device bound yet',
|
|
addDevice: 'Scan to add device',
|
|
myDevice: 'My Device',
|
|
connected: 'Connected',
|
|
disconnected: 'Disconnected',
|
|
reconnect: 'Reconnect',
|
|
smartRemain: 'Smart Mode · {days} days left',
|
|
notSubscribed: 'Smart Mode not subscribed',
|
|
smartOpen: 'Smart Mode available',
|
|
start: 'Start',
|
|
deviceManage: 'Manage Device',
|
|
connectFailed: 'Connection failed',
|
|
unbindAction: 'Unbind current device',
|
|
unbindConfirmTitle: 'Confirm Unbind',
|
|
unbindConfirmText: 'You will not be able to use this device after unbinding. Continue?',
|
|
unbindLoading: 'Unbinding...',
|
|
unbindDone: 'Unbound',
|
|
unbindFailed: 'Unbind failed'
|
|
}
|
|
}
|