- 3 个并行 agent 各管 5 页,互不重叠命名空间 - 全 App 18 页均 i18n.bind,22 命名空间/400 键中英对齐 - 动态文案(时长/天数/价格/区域)JS 内 i18n.t 计算;区域标签复用 common.regions
30 行
868 B
JavaScript
30 行
868 B
JavaScript
// Strings for the subSuccess page. Fill zh/en with identical key structure.
|
|
module.exports = {
|
|
zh: {
|
|
title: '订阅成功',
|
|
subtitle: '欢迎使用智能模式',
|
|
successTitle: '订阅成功!',
|
|
subscribed: '已订阅',
|
|
validUntil: '有效期至:',
|
|
startSmart: '立即体验智能模式',
|
|
backHome: '返回首页',
|
|
planTrial: '试用会员',
|
|
planMonthly: '月卡会员',
|
|
planYearly: '年卡会员',
|
|
planDefault: '会员'
|
|
},
|
|
en: {
|
|
title: 'Subscription Successful',
|
|
subtitle: 'Welcome to Smart Mode',
|
|
successTitle: 'Subscription successful!',
|
|
subscribed: 'Subscribed',
|
|
validUntil: 'Valid until: ',
|
|
startSmart: 'Try Smart Mode now',
|
|
backHome: 'Back to Home',
|
|
planTrial: 'Trial Member',
|
|
planMonthly: 'Monthly Member',
|
|
planYearly: 'Yearly Member',
|
|
planDefault: 'Member'
|
|
}
|
|
}
|