- 3 个并行 agent 各管 5 页,互不重叠命名空间 - 全 App 18 页均 i18n.bind,22 命名空间/400 键中英对齐 - 动态文案(时长/天数/价格/区域)JS 内 i18n.t 计算;区域标签复用 common.regions
26 行
723 B
JavaScript
26 行
723 B
JavaScript
// Strings for the treatment-done page. Keep zh/en with identical key structure.
|
|
module.exports = {
|
|
zh: {
|
|
title: '使用完成',
|
|
headerSub: '本次使用已结束',
|
|
resultTitle: '使用完成!',
|
|
durationLabel: '使用时长',
|
|
regionLabel: '使用区域',
|
|
recorded: '本次使用已记录',
|
|
backHome: '返回首页',
|
|
durationMin: '{min}分钟',
|
|
durationSec: '{sec}秒'
|
|
},
|
|
en: {
|
|
title: 'Complete',
|
|
headerSub: 'This session has ended',
|
|
resultTitle: 'Session Complete!',
|
|
durationLabel: 'Duration',
|
|
regionLabel: 'Regions',
|
|
recorded: 'This session has been recorded',
|
|
backHome: 'Back to Home',
|
|
durationMin: '{min} min',
|
|
durationSec: '{sec} s'
|
|
}
|
|
}
|