- 3 个并行 agent 各管 5 页,互不重叠命名空间 - 全 App 18 页均 i18n.bind,22 命名空间/400 键中英对齐 - 动态文案(时长/天数/价格/区域)JS 内 i18n.t 计算;区域标签复用 common.regions
22 行
781 B
JavaScript
22 行
781 B
JavaScript
// Strings for the login page. Fill zh/en with identical key structure.
|
|
module.exports = {
|
|
zh: {
|
|
wechatLogin: '微信登录',
|
|
welcome: '欢迎使用LumiFlow',
|
|
desc: '登录后即可使用全部功能',
|
|
agreement: '登录即表示同意《用户协议》和《隐私政策》',
|
|
loginFailed: '登录失败',
|
|
agreementTitle: '提示',
|
|
agreementContent: '用户协议和隐私政策内容建设中'
|
|
},
|
|
en: {
|
|
wechatLogin: 'WeChat Login',
|
|
welcome: 'Welcome to LumiFlow',
|
|
desc: 'Log in to unlock all features',
|
|
agreement: 'By logging in, you agree to the Terms of Service and Privacy Policy',
|
|
loginFailed: 'Login failed',
|
|
agreementTitle: 'Notice',
|
|
agreementContent: 'Terms of Service and Privacy Policy are coming soon'
|
|
}
|
|
}
|