chore(多语言): 补充英文翻译

This commit is contained in:
2025-12-29 10:51:38 +08:00
parent 332350cfab
commit 1886616bb4
138 changed files with 906 additions and 70 deletions

View File

@@ -16,39 +16,43 @@ export default {
let newRoute;
try {
//公共语言包
var lang = require('../../lang/' + locale + '/common.js').lang;
var lang = require('@/lang/' + locale + '/common.js').lang;
//当前页面语言包
let route = _this.route;
let routeParts = route.split("/");
// 映射新的页面目录到原来的语言文件目录
if (routeParts[0] === 'pages_goods') {
routeParts[0] = 'goods';
} else if (routeParts[0] === 'pages_order') {
routeParts[0] = 'order';
} else if (routeParts[0] === 'pages_promotion' && routeParts[1] === 'point') {
// 处理积分相关的推广页面映射到point语言文件目录
routeParts = ['point', routeParts[2]];
} else if (routeParts[0] === 'pages' && routeParts[1] === 'member') {
// 处理主包中的会员中心页面映射到member目录
routeParts = ['member', routeParts[2]];
} else if (routeParts[0] === 'pages_tool') {
// 处理工具页面目录,根据子目录映射到对应的语言文件目录
if (routeParts[1] === 'member') {
routeParts = ['member', routeParts[2]];
} else if (routeParts[1] === 'order') {
routeParts = ['order', routeParts[2]];
} else if (routeParts[1] === 'goods') {
routeParts = ['goods', routeParts[2]];
} else if (routeParts[1] === 'help' || routeParts[1] === 'notice' || routeParts[1] === 'article') {
// 处理CMS相关页面
routeParts = [routeParts[1], routeParts[2]];
console.log(`当前路由: ${route}`)
// ---- 处理页面目录映射 <begin> 分包造成的,需要根据实际目录结构进行映射----
if (routeParts[0] === 'pages_goods') routeParts[0] = 'goods';
if (routeParts[0] === 'pages_member') routeParts[0] = 'member';
if (routeParts[0] === 'pages_order') routeParts[0] = 'order';
if (routeParts[0] === 'pages_promotion') {
if (routeParts[1] === 'point') routeParts = ['point', ...routeParts.slice(2)];
if (routeParts[1] === 'fenxiao') routeParts = ['fenxiao', ...routeParts.slice(2)];
if (routeParts[1] === 'merch') routeParts = ['merch', ...routeParts.slice(2)];
}
if (routeParts[0] === 'pages_tool') {
if (routeParts[1] === 'member') routeParts = ['member', ...routeParts.slice(2)];
if (routeParts[1] === 'order') routeParts = ['order', ...routeParts.slice(2)];
if (routeParts[1] === 'goods') routeParts = ['goods', ...routeParts.slice(2)];
if (routeParts[1] === 'help') routeParts = ['help', ...routeParts.slice(2)];
if (routeParts[1] === 'notice') routeParts = ['notice', ...routeParts.slice(2)];
if (routeParts[1] === 'article') routeParts = ['article', ...routeParts.slice(2)];
}
// ---- 处理页面目录映射 <end>----
// 去掉pages目录只保留子目录
if (routeParts[0] === 'pages') {
routeParts = routeParts.slice(1);
}
let langPath = routeParts.join("/");
let currentPageLang = require('../../lang/' + locale + '/' + langPath + '.js').lang;
console.log(`当前页面语言文件路径: ${'@/lang/' + locale + '/' + langPath + '.js'}`)
let currentPageLang = require('@/lang/' + locale + '/' + langPath + '.js').lang;
for (let f in currentPageLang) {
lang[f] = currentPageLang[f];

4
lang/en-us/ai/ai-chat.js Normal file
View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'AI Intelligent Customer Service'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Article Details'
}

View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
title: 'Article List',
emptyText: "No article information available currently"
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: ''
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Pending Payment Order'
}

View File

@@ -0,0 +1,10 @@
export const lang = {
//title为每个页面的标题
title: '',
select: 'Select',
params: 'Parameters',
service: 'Product Service',
allGoods: 'All Products',
image: 'Image',
video: 'Video',
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Bargain Details'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Bargain Zone'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'My Bargain'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Pending Payment Order'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Combo Package'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Pending Payment Orders'
}

4
lang/en-us/diy/diy.js Normal file
View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: '',
}

View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
// title: 'Distributor Application'
title: ''
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Bill'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'My Following'
}

View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
// title: 'Distribution Product List',
title: ''
}

View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
// title: 'Distribution Center',
title: ''
}

View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
// title: 'Distributor Level',
title: ''
}

View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
// title: 'Distribution Orders',
title: ''
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Order Details'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Promotion Poster'
}

View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
// title: 'My Team'
title: ''
}

View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
// title: 'Withdrawal Application'
title: ''
}

View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
// title: 'Withdrawal Records'
title: ''
}

4
lang/en-us/game/cards.js Normal file
View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Scratch Card'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Winning Records'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Smash Golden Eggs'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Turntable'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Brand Zone'
}

13
lang/en-us/goods/cart.js Normal file
View File

@@ -0,0 +1,13 @@
export const lang = {
//title为每个页面的标题
title: 'Shopping Cart',
complete: 'Complete',
edit: 'Manage',
allElection: 'Select All',
total: 'Total',
settlement: 'Checkout',
emptyTips: 'No products yet',
goForStroll: 'Go shopping',
del: 'Delete',
login: 'Go to login'
}

View File

@@ -1,6 +1,6 @@
export const lang = {
//title为每个页面的标题
title: 'Category',
title: 'Goods Category',
search: 'Search',
seeMore : '查看更多'
seeMore : 'See More'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Product Consultation'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'I Want to Consult'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Coupon Collection'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Receive Coupon'
}

View File

@@ -1,6 +1,6 @@
export const lang = {
//title为每个页面的标题
title: 'Goods dtails',
title: 'Product Details',
details:'Details',
home:'Home',
cart:'Cart',
@@ -23,12 +23,12 @@ export const lang = {
max:'Maximum',
select: '选择',
params: '参数',
service: '商品服务',
allGoods: '全部商品',
image: '图片',
video: '视频',
select: 'Select',
params: 'Parameters',
service: 'Product Service',
allGoods: 'All Products',
image: 'Image',
video: 'Video',
kefu:'Contact',
follow:'Follow',

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Product Reviews'
}

11
lang/en-us/goods/list.js Normal file
View File

@@ -0,0 +1,11 @@
export const lang = {
//title为每个页面的标题
title: 'Product List',
Random:'Comprehensive',
Sales:'Sales',
Price:'Price',
Filter:'Filter',
Search:'Please enter the product you want to search',
Make:'Consult',
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Product Not Found',
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Points Center'
}

View File

@@ -0,0 +1,9 @@
export const lang = {
//title为每个页面的标题
title: 'Search',
history: 'Search History',
hot: 'Hot Search',
find: 'Search Discovery',
hidefind: 'Current search discovery is hidden',
inputPlaceholder: 'Search products'
}

View File

@@ -0,0 +1,10 @@
export const lang = {
//title为每个页面的标题
title: '',
select: 'Select',
params: 'Parameters',
service: 'Product Service',
allGoods: 'All Products',
image: 'Image',
video: 'Video'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Group Buy Zone'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Pending Payment Orders'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Help Detail'
}

5
lang/en-us/help/list.js Normal file
View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
title: 'Help Center',
emptyText: 'No help information available'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Red Envelopes List'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'My Red Envelopes'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Home',
}

4
lang/en-us/live/list.js Normal file
View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Live Streaming',
}

12
lang/en-us/login/find.js Normal file
View File

@@ -0,0 +1,12 @@
export const lang = {
//title为每个页面的标题
title: 'Find Password',
findPassword: 'Find Password',
accountPlaceholder: 'Please enter mobile number',
captchaPlaceholder: 'Please enter verification code',
dynacodePlaceholder: 'Please enter dynamic code',
passwordPlaceholder: 'Please enter new password',
rePasswordPlaceholder: 'Please confirm new password',
next: 'Next',
save: 'Confirm Modification'
}

20
lang/en-us/login/login.js Normal file
View File

@@ -0,0 +1,20 @@
export const lang = {
//title为每个页面的标题
title: 'Login',
mobileLogin: 'Mobile Login',
accountLogin: 'Account Login',
autoLogin: 'One-Click Authorization Login',
login: 'Login',
mobilePlaceholder: 'Mobile login is only for mainland China users',
dynacodePlaceholder: 'Please enter dynamic code',
captchaPlaceholder: 'Please enter verification code',
accountPlaceholder: 'Please enter account',
passwordPlaceholder: 'Please enter password',
rePasswordPlaceholder: 'Please confirm password',
forgetPassword: 'Forgot password',
register: 'Register',
registerTips: 'Users without an account',
registerTips1: 'register',
registerTips2: 'now',
newUserRegister: 'New User Registration'
}

View File

@@ -0,0 +1,17 @@
export const lang = {
//title为每个页面的标题
title: 'Register',
mobileRegister: 'Mobile Registration',
accountRegister: 'Account Registration',
mobilePlaceholder: 'Mobile login is only for mainland China users',
dynacodePlaceholder: 'Please enter dynamic code',
captchaPlaceholder: 'Please enter verification code',
accountPlaceholder: 'Please enter username',
passwordPlaceholder: 'Please enter password',
rePasswordPlaceholder: 'Please confirm password',
completeRegister: 'Complete registration and login',
registerTips: 'By clicking register, you agree to the',
registerAgreement: 'Registration Agreement',
next: 'Next',
save: 'Save'
}

View File

@@ -0,0 +1,13 @@
export const lang = {
//title为每个页面的标题
title: 'Account List',
name: 'Name',
accountType: 'Account Type',
mobilePhone: 'Mobile Number',
withdrawalAccount: 'Withdrawal Account',
bankInfo: 'Branch Information',
newAddAccount: 'Add New Account',
del: 'Delete',
update: 'Modify',
emptyText: 'No accounts available'
}

View File

@@ -0,0 +1,14 @@
export const lang = {
//title为每个页面的标题
title: 'Edit Account',
name: 'Name',
namePlaceholder: 'Please enter real name',
mobilePhone: 'Mobile Number',
mobilePhonePlaceholder: 'Please enter mobile number',
accountType: 'Account Type',
bankInfo: 'Branch Information',
bankInfoPlaceholder: 'Please enter branch information',
withdrawalAccount: 'Withdrawal Account',
withdrawalAccountPlaceholder: 'Please enter withdrawal account',
save: 'Save'
}

View File

@@ -0,0 +1,9 @@
export const lang = {
//title为每个页面的标题
title: 'Shipping Address',
newAddAddress: 'Add Shipping Address',
getAddress: 'Get Address with One Click',
is_default: 'Default',
modify: 'Edit',
del: 'Delete'
}

View File

@@ -0,0 +1,14 @@
export const lang = {
//title为每个页面的标题
title: 'Edit Shipping Address',
consignee: 'Name',
consigneePlaceholder: 'Consignee Name',
mobile: 'Mobile',
mobilePlaceholder: 'Consignee Mobile Number',
telephone: 'Phone',
telephonePlaceholder: 'Consignee Fixed Phone (Optional)',
receivingCity: 'Region',
address: 'Detailed Address',
addressPlaceholder: 'Community, Street, Office Building',
save: 'Save'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Apply for Withdrawal'
}

View File

@@ -0,0 +1,3 @@
export const lang = {
title: 'Account Cancellation',
}

View File

@@ -0,0 +1,13 @@
export const lang = {
//title为每个页面的标题
title: 'My Balance',
accountBalance: 'Account Balance ',
money:' (Yuan)',
recharge: 'Recharge',
withdrawal: 'Withdraw',
balanceDetailed: 'Balance Details',
emptyTips: 'No balance records',
rechargeRecord:'Recharge Records',
ableAccountBalance:'Cash Balance ',
noAccountBalance:'Stored Value Balance ',
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Balance Details'
}

View File

@@ -0,0 +1,3 @@
export const lang = {
title: 'Account Cancellation',
}

View File

@@ -0,0 +1,3 @@
export const lang = {
title: 'Account Cancellation',
}

View File

@@ -0,0 +1,3 @@
export const lang = {
title: 'Account Cancellation',
}

View File

@@ -0,0 +1,3 @@
export const lang = {
title: 'Account Cancellation',
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Membership Card'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Membership Card'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'My Favorites'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Customer Service',
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'My Coupons'
}

View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
title: 'My Browsing History',
emptyTpis: 'You haven\'t browsed any products yet!'
}

View File

@@ -0,0 +1,5 @@
export const lang = {
//title为每个页面的标题
title: 'My Gifts',
emptyTips: 'No gifts available'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Gift Order',
}

View File

@@ -1,44 +1,44 @@
export const lang = {
//title为每个页面的标题
title: 'member',
title: 'Member Center',
login: 'Login',
loginTpis: 'Login experience',
memberLevel: '会员等级',
moreAuthority: '更多权限',
allOrders: '全部订单',
seeAllOrders: '查看全部订单',
waitPay: '待付款',
readyDelivery: '待发货',
waitDelivery: '待收货',
refunding: '退款',
memberLevel: 'Member Level',
moreAuthority: 'More Privileges',
allOrders: 'All Orders',
seeAllOrders: 'View All Orders',
waitPay: 'Pending Payment',
readyDelivery: 'Pending Shipment',
waitDelivery: 'Pending Receipt',
refunding: 'Refunding',
// 会员中心入口
sign: '签到',
personInfo: '个人资料',
receivingAddress: '收货地址',
accountList: '账户列表',
couponList: '优惠券',
mySpellList: '我的拼单',
myBargain: '我的砍价',
virtualCode: '虚拟码',
winningRecord: '我的礼品',
myCollection: '我的关注',
myTracks: '我的足迹',
pintuanOrder: '拼团订单',
yushouOrder: '预售订单',
verification: '核销台',
message: '我的消息',
exchangeOrder: '积分兑换',
sign: 'Check-in',
personInfo: 'Personal Information',
receivingAddress: 'Shipping Address',
accountList: 'Account List',
couponList: 'Coupon List',
mySpellList: 'My Group Orders',
myBargain: 'My Bargains',
virtualCode: 'Virtual Code',
winningRecord: 'My Gifts',
myCollection: 'My Favorites',
myTracks: 'My Browsing History',
pintuanOrder: 'Group Purchase Orders',
yushouOrder: 'Pre-sale Orders',
verification: 'Verification Desk',
message: 'My Messages',
exchangeOrder: 'Points Exchange',
// 推广中心
balance: 'Balance',
point: 'Point',
coupon: 'Coupon',
memberRecommend: '邀请有礼',
myPresale: '我的预售',
myGiftcard: '我的礼品卡',
myDivideticket: '我的瓜分券',
myRebate:'拼团返利',
myHongbao:'我的红包列表',
myBlindBox:'我的盲盒',
memberRecommend: 'Invite Rewards',
myPresale: 'My Pre-sales',
myGiftcard: 'My Gift Cards',
myDivideticket: 'My Dividend Tickets',
myRebate: 'Group Rebate',
myHongbao: 'My Red Envelopes',
myBlindBox: 'My Blind Boxes',
waitpay:'Waitpay',
waitsend:'Waitsend',

56
lang/en-us/member/info.js Normal file
View File

@@ -0,0 +1,56 @@
export const lang = {
//title为每个页面的标题
title: 'Profile',
headImg: 'Avatar',
account: 'Account',
nickname: 'Nickname',
realName: 'Real Name',
sex: 'Gender',
birthday: 'Birthday',
password: 'Password',
paypassword: 'Payment Password',
mobilePhone: 'Mobile Phone',
bindMobile: 'Bind Mobile',
cancellation: 'Cancel Account',
lang: "Language",
logout: 'Logout',
save: "Save",
noset: 'Not Set',
nickPlaceholder: "Please enter a new nickname",
pleaseRealName:"Please enter your real name",
nowPassword: "Current Password",
newPassword: "New Password",
confirmPassword: "Confirm New Password",
phoneNumber: "Phone Number",
confirmCode: "Verification Code",
confirmCodeInput: "Please enter verification code",
confirmCodeInputerror: "Invalid verification code",
findanimateCode: "Get Dynamic Code",
animateCode: "Dynamic Code",
animateCodeInput: "Please enter dynamic code",
modifyNickname: "Modify Nickname",
modifyPassword: "Modify Password",
bindPhone: "Bind Phone",
alikeNickname: "Same as original nickname, no need to modify",
noEmityNickname: "Nickname cannot be empty",
updateSuccess: "Update Successful",
pleaseInputOldPassword: "Please enter original password",
pleaseInputNewPassword: "Please enter new password",
passwordLength: "Password must be at least 6 characters long",
alikePassword: "Passwords do not match",
samePassword: "New password cannot be the same as current password",
surePhoneNumber: "Please enter a valid phone number",
alikePhone: "Same as original phone number, no need to modify",
modify: 'Modify'
}

View File

@@ -0,0 +1,61 @@
export const lang = {
//title为每个页面的标题
title: 'Edit Profile',
headImg: 'Avatar',
account: 'Account',
username: 'Username',
nickname: 'Nickname',
realName: 'Real Name',
sex: 'Gender',
birthday: 'Birthday',
password: 'Password',
paypassword: 'Payment Password',
mobilePhone: 'Mobile Phone',
bindMobile: 'Bind Mobile',
cancellation: 'Cancel Account',
lang: "Language",
logout: 'Logout',
save: "Save",
noset: 'Not Set',
usernamePlaceholder: "Please enter a new username",
nickPlaceholder: "Please enter a new nickname",
pleaseRealName:"Please enter your real name",
nowPassword: "Current Password",
newPassword: "New Password",
confirmPassword: "Confirm New Password",
phoneNumber: "Phone Number",
confirmCode: "Verification Code",
confirmCodeInput: "Please enter verification code",
confirmCodeInputerror: "Invalid verification code",
findanimateCode: "Get Dynamic Code",
animateCode: "Dynamic Code",
animateCodeInput: "Please enter dynamic code",
modifyNickname: "Modify Nickname",
modifyPassword: "Modify Password",
bindPhone: "Bind Phone",
alikeusername: "Same as original username, no need to modify",
noEmityUsername: "Username cannot be empty",
alikeNickname: "Same as original nickname, no need to modify",
noEmityNickname: "Nickname cannot be empty",
updateSuccess: "Update Successful",
pleaseInputOldPassword: "Please enter original password",
pleaseInputNewPassword: "Please enter new password",
passwordLength: "Password must be at least 6 characters long",
alikePassword: "Passwords do not match",
samePassword: "New password cannot be the same as current password",
surePhoneNumber: "Please enter a valid phone number",
alikePhone: "Same as original phone number, no need to modify",
modify: 'Modify'
}

View File

@@ -0,0 +1,3 @@
export const lang = {
title: 'Invite Friends',
}

View File

@@ -0,0 +1,17 @@
export const lang = {
//title为每个页面的标题
title: 'Member Level',
defaultLevelTips: 'You are already the highest level member!',
tag: 'Exclusive Tag',
tagDesc: 'Tag Expert',
discount: 'Exclusive Discount',
discountDesc: 'Exclusive {0}% Off',
service: 'Premium Service',
serviceDesc: '360-degree comprehensive',
memberLevel: 'Member Level',
condition: 'Condition',
equity: 'Benefits',
giftPackage: 'Upgrade Gift Pack',
levelExplain: 'Level Explanation',
upgradeTips: 'Upgrade membership to enjoy exclusive benefits'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'My Messages'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Modify Avatar'
}

View File

@@ -0,0 +1,3 @@
export const lang = {
title: 'Payment Password',
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'My Points'
}

View File

@@ -0,0 +1,6 @@
export const lang = {
//title为每个页面的标题
title: 'Points Details',
emptyTpis: 'You don\'t have any points records yet!',
pointExplain: 'Points Explanation'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Check-in Rewards'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Withdrawal Records'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Withdrawal Details'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Notice Detail'
}

View File

@@ -0,0 +1,6 @@
export const lang = {
//title为每个页面的标题
title: 'Notice List',
emptyText:"No more information available",
contentTitle:'Upgrade Notice'
}

View File

@@ -0,0 +1,6 @@
export const lang = {
//title为每个页面的标题
title: 'Refund',
checkDetail: 'View Details',
emptyTips: 'No refund records'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Order Details'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Order Details'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Order Details'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Order Details'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Order Details'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Write a Review'
}

13
lang/en-us/order/list.js Normal file
View File

@@ -0,0 +1,13 @@
export const lang = {
//title为每个页面的标题
title: 'Order List',
emptyTips: 'No related orders',
all: 'All',
waitPay: 'Pending Payment',
readyDelivery: 'Pending Shipment',
waitDelivery: 'Pending Receipt',
waitEvaluate: 'Pending Review',
waitUse: 'Pending Use',
update: "Release to refresh",
updateIng: "Loading..."
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Logistics Information'
}

View File

@@ -0,0 +1,4 @@
export const lang = {
//title为每个页面的标题
title: 'Pending Payment Order'
}

Some files were not shown because too many files have changed in this diff Show More