Some checks reported errors
continuous-integration/drone/push Build encountered an error
148 lines
3.7 KiB
JavaScript
148 lines
3.7 KiB
JavaScript
// 简体中文语言包
|
|
export default {
|
|
// 通用
|
|
common: {
|
|
confirm: '确定',
|
|
cancel: '取消',
|
|
loading: '加载中...',
|
|
noMore: '没有更多了',
|
|
networkError: '网络连接失败,请检查网络设置',
|
|
timeout: '网络连接超时,请重试',
|
|
serverError: '服务器繁忙,请稍后重试',
|
|
retry: '重试'
|
|
},
|
|
// TabBar
|
|
tabBar: {
|
|
home: '首页',
|
|
mine: '我的'
|
|
},
|
|
// 登录页
|
|
login: {
|
|
title: '登录',
|
|
phonePlaceholder: '请输入手机号',
|
|
codePlaceholder: '请输入验证码',
|
|
sendCode: '发送验证码',
|
|
resendCode: '{seconds}秒后重发',
|
|
loginBtn: '登录',
|
|
agreementTip: '请阅读并同意协议',
|
|
agreementPrefix: '我已阅读并同意',
|
|
userAgreement: '用户协议',
|
|
and: '和',
|
|
privacyPolicy: '隐私政策',
|
|
autoRegisterTip: '未注册的手机登录后将自动创建账号'
|
|
},
|
|
// 首页
|
|
home: {
|
|
title: '首页',
|
|
membership: '成为会员',
|
|
stamps: '节日印花',
|
|
qrcode: '会员二维码',
|
|
guide: '使用说明',
|
|
redeemableCoupons: '可兑换优惠券',
|
|
redeemBtn: '兑换',
|
|
redeemSuccess: '兑换成功',
|
|
redeemFail: '积分不足,无法兑换',
|
|
couponOffline: '优惠券已下架',
|
|
pointsRequired: '{points}积分'
|
|
},
|
|
// 优惠券卡片
|
|
couponCard: {
|
|
expireLabel: '到期时间:',
|
|
conditionLabel: '兑换条件:',
|
|
pointsUnit: '积分',
|
|
noLimit: '无限制',
|
|
redeemBtn: '兑换',
|
|
redeemedBtn: '已领取'
|
|
},
|
|
// 会员二维码
|
|
qrcode: {
|
|
title: '会员二维码',
|
|
expireIn: '有效期剩余 {time}',
|
|
refreshing: '刷新中...'
|
|
},
|
|
// 会员页
|
|
membership: {
|
|
title: '会员服务',
|
|
joinBtn: '开通会员',
|
|
joinedBtn: '会员已开通',
|
|
subscribeBtn: '订阅会员',
|
|
subscribedBtn: '已购买订阅会员',
|
|
payFail: '支付失败,请重试',
|
|
payNotSupported: '当前设备不支持该支付方式',
|
|
payConfirmPending: '支付已完成,会员状态稍后更新'
|
|
},
|
|
// 节日印花
|
|
stamps: {
|
|
title: '节日印花',
|
|
redeemBtn: '兑换',
|
|
redeemedBtn: '已兑换'
|
|
},
|
|
// 我的页
|
|
mine: {
|
|
title: '我的',
|
|
loginBtn: '点击登录',
|
|
points: '我的积分',
|
|
giftPoints: '赠送积分',
|
|
myCoupons: '我的优惠券',
|
|
switchLang: '切换语言',
|
|
userAgreement: '用户协议',
|
|
privacyPolicy: '隐私政策',
|
|
about: '关于',
|
|
logout: '退出登录',
|
|
logoutConfirm: '确定退出登录吗?',
|
|
giftSuccess: '积分已赠送',
|
|
giftInsufficient: '剩余积分不足,无法赠送'
|
|
},
|
|
// 赠送积分弹窗
|
|
giftPoints: {
|
|
title: '赠送积分',
|
|
uidPlaceholder: '请输入对方UID',
|
|
pointsPlaceholder: '请输入赠送积分数量',
|
|
giftBtn: '赠送'
|
|
},
|
|
// 积分页
|
|
points: {
|
|
title: '我的积分',
|
|
earnTab: '获取记录',
|
|
spendTab: '使用记录'
|
|
},
|
|
// 优惠券页
|
|
coupons: {
|
|
title: '我的优惠券',
|
|
availableTab: '可使用',
|
|
usedTab: '已使用',
|
|
expiredTab: '已过期',
|
|
usedLabel: '已使用',
|
|
expiredLabel: '已过期'
|
|
},
|
|
// 兑换弹窗
|
|
redeem: {
|
|
title: '确认兑换',
|
|
pointsNeeded: '所需积分:{points}',
|
|
pointsLabel: '所需积分:',
|
|
confirmBtn: '确定兑换'
|
|
},
|
|
// 内容页
|
|
agreement: {
|
|
title: '用户协议'
|
|
},
|
|
privacy: {
|
|
title: '隐私政策'
|
|
},
|
|
// 关于页
|
|
about: {
|
|
title: '关于',
|
|
version: '版本 {version}',
|
|
deleteAccount: '注销账号',
|
|
deleteConfirm: '确定注销账号吗?注销后数据将无法恢复。',
|
|
deleteSuccess: '已注销'
|
|
},
|
|
// 语言选择
|
|
language: {
|
|
title: '选择语言',
|
|
zhCN: '简体中文',
|
|
zhTW: '繁體中文',
|
|
en: 'English'
|
|
}
|
|
}
|