chore(春节活动页面): 补充翻译

This commit is contained in:
hzj 2026-02-11 10:37:51 +08:00
parent b70b871391
commit 1d0df1afcf
5 changed files with 29 additions and 16 deletions

View File

@ -430,7 +430,6 @@
"Total Tickets:({ usedCount }/100)": "إجمالي التذاكر:({ usedCount }/100)",
"Lucky Dollars Medal*permanent": "ميدالية الدولار المحظوظ*دائم",
"Task for tickets": "مهمة للحصول على تذاكر",
"Rewards:": "المكافآت:",
"done": "تم",
"Daily total recharge amount: $1 ({currentValue}/{targetValue})": "إجمالي مبلغ الشحن اليومي: 1 دولار ({currentValue}/{targetValue})",
"Daily total recharge amount: $10 ({currentValue}/{targetValue})": "إجمالي مبلغ الشحن اليومي: 10 دولارات ({currentValue}/{targetValue})",
@ -471,5 +470,12 @@
"task_go": "اذهب >",
"task_receive": "استلام",
"task_received": "تم الاستلام"
"task_received": "تم الاستلام",
"remaining_lottery_tickets": "تذاكر اليانصيب المتبقية",
"how_to_get_ticket": "كيفية الحصول على تذكرة",
"lucky_and_magical_gifts_win_gold_coins": "الهدايا المحظوظة والسحرية تفوز بالعملات الذهبية",
"win_coins_in_the_game": "اربح العملات في اللعبة",
"coins_per_get": "100000 عملة/احصل"
}

View File

@ -430,7 +430,6 @@
"Total Tickets:({ usedCount }/100)": "Total Tickets:({ usedCount }/100)",
"Lucky Dollars Medal*permanent": "Lucky Dollars Medal*permanent",
"Task for tickets": "Task for tickets",
"Rewards:": "Rewards:",
"done": "done",
"Daily total recharge amount: $1 ({currentValue}/{targetValue})": "Daily total recharge amount: $1 ({currentValue}/{targetValue})",
"Daily total recharge amount: $10 ({currentValue}/{targetValue})": "Daily total recharge amount: $10 ({currentValue}/{targetValue})",
@ -471,5 +470,12 @@
"task_go": "Go >",
"task_receive": "Receive",
"task_received": "Received"
"task_received": "Received",
"remaining_lottery_tickets": "Remaining lottery tickets",
"how_to_get_ticket": "How to get a ticket",
"lucky_and_magical_gifts_win_gold_coins": "Lucky and magical gifts win gold coins",
"win_coins_in_the_game": "Win coins in the game",
"coins_per_get": "100000 coins/Get"
}

View File

@ -430,7 +430,6 @@
"Total Tickets:({ usedCount }/100)": "总抽奖券:({ usedCount }/100)",
"Lucky Dollars Medal*permanent": "幸运美元徽章*永久",
"Task for tickets": "获取抽奖券任务",
"Rewards:": "奖励:",
"done": "已完成",
"Daily total recharge amount: $1 ({currentValue}/{targetValue})": "每日总充值金额: 1美元 ({currentValue}/{targetValue})",
"Daily total recharge amount: $10 ({currentValue}/{targetValue})": "每日总充值金额: 10美元 ({currentValue}/{targetValue})",
@ -471,5 +470,12 @@
"task_go": "前往 >",
"task_receive": "接收",
"task_received": "已接收"
"task_received": "已接收",
"remaining_lottery_tickets": "剩余抽奖券",
"how_to_get_ticket": "如何获取抽奖券",
"lucky_and_magical_gifts_win_gold_coins": "幸运和魔法礼物赢得金币",
"win_coins_in_the_game": "在游戏中赢得金币",
"coins_per_get": "100000金币/获取"
}

View File

@ -143,10 +143,10 @@
<!-- 抽奖信息 -->
<div style="width: 100%; height: 5vw; display: flex; justify-content: space-between">
<!-- 拥有抽奖券 -->
<div>Remaining lottery tickets: {{ tickets }}</div>
<div>{{ $t('remaining_lottery_tickets') }}: {{ tickets }}</div>
<!-- 获取抽奖券 -->
<div @click="showTaskList">How to get a ticket</div>
<div @click="showTaskList">{{ $t('how_to_get_ticket') }}</div>
</div>
<!-- 抽奖按钮 -->

View File

@ -550,7 +550,7 @@
<!-- 任务奖励 -->
<div style="display: flex; align-items: center; gap: 1vw">
<div style="color: #fff; font-weight: 590; font-size: 0.9em">
100000 coins/Get
{{ t('coins_per_get') }}
</div>
<img
v-smart-img
@ -913,11 +913,11 @@ const closedPopup = () => {
const showTarget = (task) => {
if (task.targetType == 'SEND_GIFT') {
if (task.taskCode == 'SPINS_SEND_GIFT') {
return 'Lucky and magical gifts win gold coins'
return t('lucky_and_magical_gifts_win_gold_coins')
}
} else if (task.targetType == 'WIN_COINS') {
if (task.taskCode == 'SPINS_WIN_100000') {
return 'Win coins in the game'
return t('win_coins_in_the_game')
}
}
}
@ -959,10 +959,6 @@ const getWinners = async () => {
//
const getTaskList = async () => {
// const resTaskList = await ActTaskList()
// if (resTaskList.status && resTaskList.body) {
// taskList.value = resTaskList.body
// }
taskList.value = [
{
taskId: 1,
@ -1219,7 +1215,6 @@ const getRechargeReward = async () => {
}
return rewards
})
console.log('RechargeRewards.value:', RechargeRewards.value)
} else {
RechargeRewards.value = []
}