[transform.ts] 购买矿晶的币种显示为 VIC

This commit is contained in:
Luk Lu
2019-10-27 12:41:29 +08:00
parent 67310a3783
commit aad6b587dd
3 changed files with 3 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ export default {
'mine.origin': 'Please choose coin type',
'mine.calc': 'Exchange Calculator',
'mine.mine': '[VIC]',
'mine.addressTitle': 'Deposit >20 {label} to your address. Please scan QR code or click url to copy: ',
'mine.addressTitle': 'Deposit {label} to your address (at least 1000). Please scan QR code or click url to copy: ',
'mine.info': 'After the deposit, please click "Refresh" on the previous page to inform the platform. Crystals will become valid after the platform gets informed and confirms your deposit',
'draw.title': 'Withdraw',

View File

@@ -100,7 +100,7 @@ export default {
'mine.origin': '请选择来源币种',
'mine.calc': '汇率计算器:',
'mine.mine': '[VIC]',
'mine.addressTitle': '充值 {label} 到您的专属地址(最低20起20以下无效且无法退还)。扫描二维码或点击地址复制:',
'mine.addressTitle': '充值 {label} 到您的专属地址(最低1000起否则无效且无法退还)。扫描二维码或点击地址复制:',
'mine.info': '充值到达目标账户后,请回到上一页矿场点击刷新,平台查账确认后,您即可获得矿晶。',
'draw.title': '提币转账',

View File

@@ -58,7 +58,7 @@ export function displayTime(time: string | Moment): string {
export function displayLabel(label?: string | null): string | null | undefined {
if (label && label.toLowerCase().startsWith('usdt')) {
return 'USDT(erc20)';
return 'VIC';
}
return label;
}