chore(斋月活动): 调整任务列表的翻译文本,更新中奖历史图源

This commit is contained in:
hzj 2026-02-12 15:30:45 +08:00
parent 52daefa75a
commit 878f343559
4 changed files with 27 additions and 24 deletions

View File

@ -435,10 +435,10 @@
"Daily total recharge amount: $10 ({currentValue}/{targetValue})": "إجمالي مبلغ الشحن اليومي: 10 دولارات ({currentValue}/{targetValue})",
"Daily total recharge amount: $50 ({currentValue}/{targetValue})": "إجمالي مبلغ الشحن اليومي: 50 دولار ({currentValue}/{targetValue})",
"Daily total recharge amount: $100 ({currentValue}/{targetValue})": "إجمالي مبلغ الشحن اليومي: 100 دولار ({currentValue}/{targetValue})",
"Spend 5000 coins in the game ({currentValue}/{targetValue})": "أنفق 5000 عملة في اللعبة ({currentValue}/{targetValue})",
"Spend 10000 coins in the game ({currentValue}/{targetValue})": "أنفق 10000 عملة في اللعبة ({currentValue}/{targetValue})",
"Spend 50000 coins in the game ({currentValue}/{targetValue})": "أنفق 50000 عملة في اللعبة ({currentValue}/{targetValue})",
"Gifts: 5 gifts({currentValue}/{targetValue})": "هدايا: 5 هدايا({currentValue}/{targetValue})",
"Win 50,000 coins in total across any games ({currentValue}/{targetValue})": "اربح 50,000 عملة في المجموع عبر أي لعبة. ({currentValue}/{targetValue})",
"Win 100,000 coins in total across any games ({currentValue}/{targetValue})": "اربح 100,000 عملة في المجموع عبر أي لعبة. ({currentValue}/{targetValue})",
"Win 500,000 coins in total across any games ({currentValue}/{targetValue})": "اربح 500,000 عملة في المجموع عبر أي لعبة. ({currentValue}/{targetValue})",
"Send 5 Ramadan gifts ({currentValue}/{targetValue})": "أرسل 5 هدايا رمضان. ({currentValue}/{targetValue})",
"exchange_success_coins": "تم تبادل {amount} عملة بنجاح",
"exchange_failed_coins": "فشل التبادل لـ {amount} عملة، يرجى المحاولة لاحقاً.",

View File

@ -435,10 +435,10 @@
"Daily total recharge amount: $10 ({currentValue}/{targetValue})": "Daily total recharge amount: $10 ({currentValue}/{targetValue})",
"Daily total recharge amount: $50 ({currentValue}/{targetValue})": "Daily total recharge amount: $50 ({currentValue}/{targetValue})",
"Daily total recharge amount: $100 ({currentValue}/{targetValue})": "Daily total recharge amount: $100 ({currentValue}/{targetValue})",
"Spend 5000 coins in the game ({currentValue}/{targetValue})": "Spend 5000 coins in the game ({currentValue}/{targetValue})",
"Spend 10000 coins in the game ({currentValue}/{targetValue})": "Spend 10000 coins in the game ({currentValue}/{targetValue})",
"Spend 50000 coins in the game ({currentValue}/{targetValue})": "Spend 50000 coins in the game ({currentValue}/{targetValue})",
"Gifts: 5 gifts({currentValue}/{targetValue})": "Gifts: 5 gifts({currentValue}/{targetValue})",
"Win 50,000 coins in total across any games ({currentValue}/{targetValue})": "Win 50,000 coins in total across any games. ({currentValue}/{targetValue})",
"Win 100,000 coins in total across any games ({currentValue}/{targetValue})": "Win 100,000 coins in total across any games. ({currentValue}/{targetValue})",
"Win 500,000 coins in total across any games ({currentValue}/{targetValue})": "Win 500,000 coins in total across any games. ({currentValue}/{targetValue})",
"Send 5 Ramadan gifts ({currentValue}/{targetValue})": "Send 5 Ramadan gifts. ({currentValue}/{targetValue})",
"exchange_success_coins": "Successfully exchanged {amount} coins",
"exchange_failed_coins": "Exchange failed for {amount} coins, please try again later.",

View File

@ -435,10 +435,10 @@
"Daily total recharge amount: $10 ({currentValue}/{targetValue})": "每日总充值金额: 10美元 ({currentValue}/{targetValue})",
"Daily total recharge amount: $50 ({currentValue}/{targetValue})": "每日总充值金额: 50美元 ({currentValue}/{targetValue})",
"Daily total recharge amount: $100 ({currentValue}/{targetValue})": "每日总充值金额: 100美元 ({currentValue}/{targetValue})",
"Spend 5000 coins in the game ({currentValue}/{targetValue})": "在游戏内消费5000金币 ({currentValue}/{targetValue})",
"Spend 10000 coins in the game ({currentValue}/{targetValue})": "在游戏内消费10000金币 ({currentValue}/{targetValue})",
"Spend 50000 coins in the game ({currentValue}/{targetValue})": "在游戏内消费50000金币 ({currentValue}/{targetValue})",
"Gifts: 5 gifts({currentValue}/{targetValue})": "礼物: 5个礼物({currentValue}/{targetValue})",
"Win 50,000 coins in total across any games ({currentValue}/{targetValue})": "在游戏中总共赢得 50,000 金币。({currentValue}/{targetValue}",
"Win 100,000 coins in total across any games ({currentValue}/{targetValue})": "在游戏中总共赢得 100,000 金币。({currentValue}/{targetValue}",
"Win 500,000 coins in total across any games ({currentValue}/{targetValue})": "在游戏中总共赢得 500,000 金币。({currentValue}/{targetValue}",
"Send 5 Ramadan gifts ({currentValue}/{targetValue})": "发送 5 个斋月礼物。({currentValue}/{targetValue}",
"exchange_success_coins": "成功兑换 {amount} 金币",
"exchange_failed_coins": "兑换 {amount} 金币失败,请稍后重试。",

View File

@ -1781,7 +1781,10 @@
<!-- 中奖历史 -->
<div v-show="historyShow" style="position: relative; width: 95%" @click.stop>
<itemCenter :imgUrl="imageUrl('historyBg')" :contentStyle="`padding: 22vw 6vw 11vw;`">
<itemCenter
:imgUrl="imageUrl(getImgName('historyBg'))"
:contentStyle="`padding: 22vw 6vw 11vw;`"
>
<div
style="
width: 100%;
@ -2486,8 +2489,8 @@ const showTarget = (task) => {
let currentValue = timeType ? task.currentValue : task.currentValue / 60
let targetValue = timeType ? task.targetValue : task.targetValue / 60
//
currentValue = Math.floor(currentValue)
targetValue = Math.floor(targetValue)
currentValue = Math.floor(currentValue * 10) / 10
targetValue = Math.floor(targetValue * 10) / 10
let timeUnit = timeType ? t('minutes_short') : t('hours_short')
return t('on_mic_progress', {
@ -2497,24 +2500,24 @@ const showTarget = (task) => {
})
} else if (task.targetType == 'SEND_GIFT') {
if (task.taskCode == 'SPINS_SEND_GIFT_5') {
return t('Gifts: 5 gifts({currentValue}/{targetValue})', {
return t('Send 5 Ramadan gifts ({currentValue}/{targetValue})', {
currentValue: task.currentValue,
targetValue: task.targetValue,
})
}
} else if (task.targetType == 'SPEND_COINS') {
if (task.taskCode == 'SPINS_SPEND_5000') {
return t('Spend 5000 coins in the game ({currentValue}/{targetValue})', {
} else if (task.targetType == 'SAVE_COINS') {
if (task.taskCode == 'SPINS_SAVE_50000') {
return t('Win 50,000 coins in total across any games ({currentValue}/{targetValue})', {
currentValue: task.currentValue,
targetValue: task.targetValue,
})
} else if (task.taskCode == 'SPINS_SPEND_10000') {
return t('Spend 10000 coins in the game ({currentValue}/{targetValue})', {
} else if (task.taskCode == 'SPINS_SAVE_100000') {
return t('Win 100,000 coins in total across any games ({currentValue}/{targetValue})', {
currentValue: task.currentValue,
targetValue: task.targetValue,
})
} else if (task.taskCode == 'SPINS_SPEND_50000') {
return t('Spend 50000 coins in the game ({currentValue}/{targetValue})', {
} else if (task.taskCode == 'SPINS_SAVE_500000') {
return t('Win 500,000 coins in total across any games ({currentValue}/{targetValue})', {
currentValue: task.currentValue,
targetValue: task.targetValue,
})
@ -2857,7 +2860,7 @@ const preloadOtherImages = async () => {
// imageUrl('resultNext'),
// //
// imageUrl('historyBg'),
// imageUrl(getImgName('historyBg')),
// //
// imageUrl('rankingHelpBg_ar'),