- 3 个并行 agent 各管 5 页,互不重叠命名空间 - 全 App 18 页均 i18n.bind,22 命名空间/400 键中英对齐 - 动态文案(时长/天数/价格/区域)JS 内 i18n.t 计算;区域标签复用 common.regions
14 行
380 B
JavaScript
14 行
380 B
JavaScript
// Strings for the contact page. Fill zh/en with identical key structure.
|
|
module.exports = {
|
|
zh: {
|
|
title: '联系我们',
|
|
placeholderText: '内容建设中',
|
|
placeholderSub: '联系方式正在整理,敬请期待'
|
|
},
|
|
en: {
|
|
title: 'Contact Us',
|
|
placeholderText: 'Coming soon',
|
|
placeholderSub: 'Contact details are being prepared. Stay tuned.'
|
|
}
|
|
}
|