32 行
777 B
JavaScript
32 行
777 B
JavaScript
// "记录" (history) page strings.
|
|
module.exports = {
|
|
zh: {
|
|
statTotal: '累计次数',
|
|
statHours: '累计时长',
|
|
statMonth: '本月次数',
|
|
recentTitle: '最近记录',
|
|
smart: '✨ 智能',
|
|
normal: '🔄 普通',
|
|
empty: '暂无使用记录',
|
|
loadingMore: '加载更多...',
|
|
durationMin: '{min}分钟',
|
|
today: '今天',
|
|
yesterday: '昨天',
|
|
dateMd: '{m}月{d}日'
|
|
},
|
|
en: {
|
|
statTotal: 'Total Sessions',
|
|
statHours: 'Total Hours',
|
|
statMonth: 'This Month',
|
|
recentTitle: 'Recent Records',
|
|
smart: '✨ Smart',
|
|
normal: '🔄 Normal',
|
|
empty: 'No records yet',
|
|
loadingMore: 'Loading more...',
|
|
durationMin: '{min} min',
|
|
today: 'Today',
|
|
yesterday: 'Yesterday',
|
|
dateMd: '{m}/{d}'
|
|
}
|
|
}
|